2017-07-30 39 views

回答

1

不知道這是否是正確的方法,但你可以通過命令。 首先定義MyCommand,然後在pickerTapped事件中調用它。

void pickerTapped (object sender, System.EventArgs e) 
{ 
    if (MyCommand != null && MyCommand.CanExecute(null)) { 
     MyCommand.Execute(null); 
    } 
}; 
相關問題