即使已发布类似问题,我仍然没有找到解决方案。 在XAML中,我有这种“绑定”,效果很好:
<Controls:MyCustomControl MyCustomAction="{x:Static staticTest:TestDelegate.myConverterAction}" [...]>
现在,我需要以这种方式设置MyCustomAction
属性(即委托属性),但需要通过代码。
有没有办法使用C#在XAML中进行x:Static
绑定?
答案 0 :(得分:0)
C#代码中的XAML等同于:
MyCustomControl mcc = ...;
mcc.MyCustomAction = TestDelegate.myConverterAction;