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 });

浙公网安备 33010602011771号