使用自定义颜色代码设置面板背景
在 WPF 中,我可以使用以下代码设置堆栈面板的背景
stackPanelFlasher.Background = Brushes.Aqua;
如何将颜色设置为十六进制颜色代码,例如 #C7DFFC
?
In WPF,I can set the background of a stack panel using the below code
stackPanelFlasher.Background = Brushes.Aqua;
How can I set the color as a hex color code for example #C7DFFC
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
应该做这项工作。如果你想让它防水,最好是
需要更少的资源......
Should do the job. If you want to make it waterproof, better would be
needs fewer resources...
我认为这个示例可以帮助您解决 xaml 问题;
I think this sample helps you for xaml solution;
下面的单行代码应该可以工作。
The following oneliner should work.