WPF 在后台为控件绑定DynamicResource

   <ComboBoxItem Content="{DynamicResource All}"  />

等同于

ComboBoxItem item1 = new ComboBoxItem()

item1.SetResourceReference(ComboBoxItem.ContentProperty, "All");;

 

第二种

<Button  Width="{Binding ButtonWidth}"></Button>

等同于

this.Button.SetBinding(Grid.WidthProperty, new Binding("ButtonWidth") { Source = this });

posted @ 2022-06-17 14:55  奇迹之耀  阅读(357)  评论(0)    收藏  举报