Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ここでは、WPFのアクションに少し戸惑っています。ボタンのテキストを変更することはできますが、色を変更することはできません。読み取り専用のプロパティエラーが発生します。デザインに問題があるようです。テキストの色が変わるとエラーが発生します。
svrSmtp.Stop() btnStartServer.Background.ClearValue(Button.BackgroundProperty) btnStartServer.Content = "Start Proxy"
Buttonのbackgroundプロパティではなく、ButtonのButton.Backgroundの値をクリアする必要があります。
btnStartServer.ClearValue (Button.BackgroundProperty);