0

我对 WPF 的操作有点困惑。我可以更改按钮的文本但不能更改颜色,它给出了只读属性错误。似乎设计有问题。文本更改颜色会引发错误。

svrSmtp.Stop()

btnStartServer.Background.ClearValue(Button.BackgroundProperty)
btnStartServer.Content = "Start Proxy"
4

1 回答 1

3

您想清除 Button.Background 的值,而不是它的背景属性。

btnStartServer.ClearValue (Button.BackgroundProperty);
于 2012-06-18T13:14:16.740 回答