我只想设置 StackPanel 的背景属性,目前我通过以下代码设置它,
statusPanel.Background = new SolidColorBrush(Colors.Cyan);
但我只想设置一个十六进制值。我该怎么做??
最佳答案
statusPanel.Background = new SolidColorBrush(Color.FromArgb(0xFF, 0xFF, 0, 0));
如果这回答了您的问题,请检查左侧的右侧。
关于c# - 如何在 Windows Phone 应用程序中以编程方式更改堆栈面板的背景颜色?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22346949/