1

我是 WPF 的新手,正在尝试创建一个从 XML 文件构建自身的接口。新构建的界面包含不同的控件,如文本框、标签或按钮。最后一个让我头疼了好几天,因为每个按钮都有自己的命令。

按钮的示例 XML 代码:

ID="1001" GroupID="1" Control="Button" Content="Apply" Margin="2" Width="60"

这是定义每个按钮的方法:

public Button Button(XElement xElement, Button newButton)
{
    if (xElement.Attribute("Width") != null)
        newButton.Width = Convert.ToDouble((xElement.Attribute("Width").Value));
        
    if (xElement.Attribute("Content") != null)
    {
        string sContent = xElement.Attribute("Content").Value;

        //Here gets the button its command
        Commands Commands = new Commands();
        Commands.setCommand(sContent, newButton);
        newButton.Content = sContent;
    }
    return newButton;
}

内容属性同时命名按钮和功能。

问题:基本上我正在尝试构建一个包含所有可能命令的命令类。每次创建按钮时,该setCommand(sContent, newButton)方法都会扫描commands类并通过 Switch-Case 语句设置与该按钮匹配的命令。

现在,每次单击按钮时,分配的命令都应该触发。但是,甚至有可能这样做,还是我走错了路?有没有更简单的解决方案可以做到这一点,或者我只是缺少命令绑定的基本要素?

任何提示表示赞赏。

4

1 回答 1

5

首先,如果您定义了自己的命令并希望绑定到 UI 上的按钮,那么它们应该通过public properties in your VM or DataContext您的 UI 公开。

然后,一旦你有了这个安排,你可以像下面这样设置命令按钮:

Binding binding = new Binding();
binding.Path = new PropertyPath("MyCommand"); //Name of the property in Datacontext
button.SetBinding(Button.CommandProperty, binding);
于 2013-09-23T05:51:53.123 回答