我正在使用Windows 10中的UWP應用程序。試圖改變點擊事件按鈕的背景顏色。我在互聯網上搜索這個,但不能得到任何幫助。這是我的代碼。如果有人有想法該怎麼做。請分享。如何更改通用Windows平臺應用程序中按鈕的背景顏色?
private void button1_1_Click(object sender, RoutedEventArgs e)
{
if (_Sign)
{
button_1_1.Content = "Cross";
_Sign = false;
}
else
{
// button_1_1.Background = new SolidColorBrush(new Windows.UI.Color)
//indows.UI.Colors clr = new Windows.UI.Colors(new SolidColorBrush red);
// SolidColorBrush color = new SolidColorBrush();
// color = new SolidColorBrush.
// button_1_1.Background = clr;
button_1_1.Content = "Tick";
_Sign = true;
}
}
你可能有更好的運氣在XAML中做這件事,而不是後面的代碼。 [This thread](http://stackoverflow.com/questions/25414686/wpf-changing-button-background-on-click)可能會有所幫助。 – PoweredByOrange
是的,這很好,但我需要改變C#代碼的顏色,因爲我正在處理不同的場景。 – Ammar