Silverlight XAML:“类型‘Byte’”没有找到。”
我在为使用 Byte 作为条目的 Silverlight 应用程序序列化 XAML 资源字典文件时遇到问题。我或多或少地复制了其他人的示例,但似乎仍然缺少一些东西。
XAML:
<ResourceDictionary
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:system="clr-namespace:System;assembly=mscorlib">
<system:Byte x:Key="PrimaryLightColorAlphaValue">#FF</system:Byte>
...
按照其他示例包含系统命名空间,并且 Intellisense 似乎验证 XAML 预编译/运行时,但当文件尝试加载时,我仍然在运行时收到错误:
未找到“Byte”类型。 [线路:6 位置:24]
有什么想法吗?希望我错过了一些简单的事情。
I'm having trouble serializing a XAML resource dictionary file for my Silverlight application that uses a Byte as an entry. I've more or less copied the examples of how this has worked for others, but still seem to be missing something.
The XAML:
<ResourceDictionary
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:system="clr-namespace:System;assembly=mscorlib">
<system:Byte x:Key="PrimaryLightColorAlphaValue">#FF</system:Byte>
...
The system namespace is included as per other examples, and Intellisense appears to validate the XAML pre-compilation/runtime, yet I still get an error at runtime when the file attempts to load:
The type 'Byte' was not found. [Line: 6 Position: 24]
Any ideas? Hopefully I'm missing something simple.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Silverlight XAML 风格中唯一支持的本机类型是
double
、int
、bool
、string
和URI
。抱歉,我不知道有什么聪明的方法可以绕过这个虚假的限制。参考:XAML 使用语法
The only native types supported in Silverlight's flavor of XAML are
double
,int
,bool
,string
andUri
. I know no smart way around this bogus limitation, sorry.Reference: XAML Usage Syntax