动态设置属性WPF应用程序

时间:2015-08-03 04:28:19

标签: c# wpf xaml properties

我的属性为:Button1 System.Windows.Thickness 10,10,10,10 并且按钮名称为Button1。我可以设置与

相同

Propertis.Setting.Default.Button1 = _margin;

我喜欢许多与此类似的按钮,其中我的xaml名称n属性名称相同,所以我想要的是将余量设置为动态

Button option = sender as Button;

Properties.Settings.Default.option = _margin;

可以实现吗?如果是这样怎么样?

1 个答案:

答案 0 :(得分:4)

由于存储在“设置”中的值是键值对,您可以设置与Button控件名称相同的任何属性

 Button option = sender as Button;

 Properties.Settings.Default[option.Name] = _margin;