为什么我无法清除背景属性(wpf控件)

时间:2015-11-20 11:02:44

标签: c# wpf properties

为什么要使用以下方法清除背景

txb.Background.ClearValue(Control.BackgroundProperty);

例外

  

"无法清除对象的背景属性' #FFFFFFF'因为它   处于只读状态"

1 个答案:

答案 0 :(得分:0)

.Background不是必需的。它应该是:

txb.ClearProperty(Control.BackgroundProperty);