1
我嘗試從wpf瞭解ICommand。ICommand方法執行參數值
在我的Event類中,我實現了ICommand及其方法。
一個方法是執行:
public void Execute(object parameter)
{
//Do something
}
現在是我的問題:什麼樣的價值包含Execute
參數parameter
?
我嘗試從wpf瞭解ICommand。ICommand方法執行參數值
在我的Event類中,我實現了ICommand及其方法。
一個方法是執行:
public void Execute(object parameter)
{
//Do something
}
現在是我的問題:什麼樣的價值包含Execute
參數parameter
?
該值取決於您通過將傳遞給該命令的值。
像sniplet:
Command="{Binding CalculateCommand}" CommandParameter="LCM"/>
看吧:Command Binding with Parameter Passing瞭解更多詳情。
任何你需要的命令來執行。如果你不需要任何東西,它可以爲空。請參閱http://msdn.microsoft.com/zh-CN/library/system.windows.input.icommand.execute.aspx – dash