How to change the background color of button on Click Event in Universal Windows Platform Apps?

怎甘沉沦 提交于 2019-12-10 16:08:01

问题


I'm working on a UWP app in windows 10 and I am trying to change the background color of a button in a click event. This is my code:

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;
    }
}

回答1:


Use the predefined color objects from the Colors properties:

button_1_1.Background = new SolidColorBrush(Windows.UI.Colors.White);



回答2:


You can do just that

button1.SetValue(BackgroundProperty,new SolidColorBrush(Windows.UI.Colors.Black));

You can play with that! I am not on my pc now to check it but something like that works.

or you can try

button1.Background = new SolidColorBrush(Windows.Ui.Colors.Black);



回答3:


You can also provide different color

 SolidColorBrush mySolidColorBrush = new SolidColorBrush();
   mySolidColorBrush.Color = Color.FromArgb(0, 255, 244, 244);
 button1.Background = mySolidColorBrush;

U have to just convert a color code to Argb like this

return new SolidColorBrush(
                Color.FromArgb(
                    255,
                    Convert.ToByte(hexaColor.Substring(1, 2), 16),
                    Convert.ToByte(hexaColor.Substring(3, 2), 16),
                    Convert.ToByte(hexaColor.Substring(5, 2), 16)
                )
            );

its very easy and proper because you can give any color not a default color like black ,orange etc.



来源:https://stackoverflow.com/questions/35463749/how-to-change-the-background-color-of-button-on-click-event-in-universal-windows

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!