我想将Xamarin.Forms.Button
它自己的Command
一个传递CommandParameter
给我的 ViewModel。我知道如何从后面的代码中实现这一点,例如......
XAML (为简洁起见忽略了大多数属性)
<Button x:Name="myButton"
Text="My Button"
Command="{Binding ButtonClickCommand}"/>
XAML.cs
public partial class MyTestPage
{
public MyTestPage()
{
InitializeComponent();
myButton.CommandParameter = myButton;
}
}
视图模型
public class MyViewModel : ViewModelBase
{
public MyViewModel()
{
ButtonClickCommand = new Command(
(parameter) =>
{
var view = parameter as Xamarin.Forms.Button;
if (view != null)
{
// Do Stuff
}
});
}
public ICommand ButtonClickCommand { get; private set; }
}
...但是可以CommandParameter
在 XAML 本身中声明吗?或者换句话说,将参数设置为按钮本身的绑定语法是什么?
<Button x:Name="myButton"
Text="My Button"
Command="{Binding ButtonClickCommand}"
CommandParameter="{[WHAT WOULD GO HERE]}"/>
顺便说一句,我已经尝试过CommandParameter="{Binding RelativeSource={RelativeSource Self}}"
,但没有奏效。
谢谢,