如何正确定义资源词典中的颜色?
以下不起作用,运行时告诉我它无法将 #FFFFFFAE 转换为颜色。
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Color x:Key="ItemHeaderBack" >#FFFFFFAE</Color>
</ResourceDictionary>
The following doesn't work, runtime tells me it cannot convert #FFFFFFAE to a color.
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Color x:Key="ItemHeaderBack" >#FFFFFFAE</Color>
</ResourceDictionary>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我尝试使用您这样的确切定义并且它有效。你如何使用它?
I tried using your exact definition like this and it worked. How do you use it?