0

这是一个如此基本的问题,但我不得不问。

在 SL 中,我有这个 XAML:

<UserControl.Resources>
    <local:Commands x:Key="MyCommands" />
</UserControl.Resources>

<Button Content="Click Me" 
        Command="{Binding Path=Click, Source={StaticResource MyCommands}}"
        CommandParameter="Hello World" />

而这背后的代码:

public class Commands
{
    public ClickCommand Click = new ClickCommand();
    public sealed class ClickCommand : ICommand
    {
        public event EventHandler CanExecuteChanged;
        public bool CanExecute(object parameter)
        {
            return true;
        }
        public void Execute(object parameter)
        {
            MessageBox.Show(parameter.ToString());
        }
    }
}

public partial class MainPage : UserControl
{
    public MainPage()
    {
        InitializeComponent();
    }
}

但是当我单击按钮时,命令的 Execute() 永远不会被触发。

有什么诀窍吗?

4

1 回答 1

0

没有技巧,您的问题在于您的 XAML 和 C# 类之间的绑定。您不能仅将字段绑定到属性。

public class Commands
{
    public ClickCommand Click { get; set; }

    public Commands()
    {
        Click = new ClickCommand();
    }

    public sealed class ClickCommand : ICommand
    {
        public event EventHandler CanExecuteChanged;

        public bool CanExecute(object parameter)
        {
            return true;
        }

        public void Execute(object parameter)
        {
            MessageBox.Show(parameter.ToString());
        }
    }
}
于 2011-09-22T11:08:05.140 回答