标签: c# wpf properties
为什么要使用以下方法清除背景
txb.Background.ClearValue(Control.BackgroundProperty);
例外
"无法清除对象的背景属性' #FFFFFFF'因为它 处于只读状态"
答案 0 :(得分:0)
.Background不是必需的。它应该是:
.Background
txb.ClearProperty(Control.BackgroundProperty);