WPF和C# - 在代码后面创建x:静态绑定

时间:2015-09-17 09:36:33

标签: c# xaml binding delegates

即使已发布类似问题,我仍然没有找到解决方案。 在XAML中,我有这种“绑定”,效果很好:

<Controls:MyCustomControl MyCustomAction="{x:Static staticTest:TestDelegate.myConverterAction}" [...]>

现在,我需要以这种方式设置MyCustomAction属性(即委托属性),但需要通过代码。 有没有办法使用C#在XAML中进行x:Static绑定?

1 个答案:

答案 0 :(得分:0)

C#代码中的XAML等同于:

MyCustomControl mcc = ...;

mcc.MyCustomAction = TestDelegate.myConverterAction;