-1
這裏是我的代碼:如何將參數添加到ViewCell的Tapped事件?
<ViewCell x:Name="noa" Tapped="pickerTapped()">
我想一個字符串參數發送到pickerTapped()方法。我怎樣才能做到這一點?
這裏是我的代碼:如何將參數添加到ViewCell的Tapped事件?
<ViewCell x:Name="noa" Tapped="pickerTapped()">
我想一個字符串參數發送到pickerTapped()方法。我怎樣才能做到這一點?
不知道這是否是正確的方法,但你可以通過命令。 首先定義MyCommand,然後在pickerTapped事件中調用它。
void pickerTapped (object sender, System.EventArgs e)
{
if (MyCommand != null && MyCommand.CanExecute(null)) {
MyCommand.Execute(null);
}
};