我在 wpf 應(yīng)用程序中有一個(gè)帶有網(wǎng)格的窗口。網(wǎng)格有一個(gè)十六進(jìn)制背景值。我只想從代碼后面檢查該背景的值是否是我真正的意思。<Grid Background="#424242" Name="GridMain">在后面的代碼中我得到:SolidColorBrush a = new SolidColorBrush();var b = (SolidColorBrush)new BrushConverter().ConvertFrom("#424242");MainWindow mainWin = Application.Current.MainWindow as MainWindow;if (mainWin.GridMain.Background == b) MDark.IsChecked = true;不得不提的是,MDark 是一個(gè)單選按鈕。而且這個(gè)條件永遠(yuǎn)不會(huì)成立。我很感激你的幫助。:D
1 回答

料青山看我應(yīng)如是
TA貢獻(xiàn)1772條經(jīng)驗(yàn) 獲得超8個(gè)贊
您正在比較SolidColorBrush實(shí)例,它們顯然不一樣。而是比較實(shí)際的顏色值:
var c = (Color) ColorConverter.ConvertFromString ("#424242");
MainWindow mainWin = Application.Current.MainWindow as MainWindow;
if (((SolidColorBrush) mainWin.GridMain.Background).Color == c)
{
MDark.IsChecked = true;
}
- 1 回答
- 0 關(guān)注
- 134 瀏覽
添加回答
舉報(bào)
0/150
提交
取消