无论如何,有没有办法从 WPF 中的资源文件中获取超链接内容
无论如何,是否可以从 xaml 中的资源文件中获取超链接内容。我知道有办法反手代码。我尝试过使用 Name="{x:Static Properties:Resources.stringname}" 但它会引发错误
或者是否有任何解决方法?
我尝试过 Name 但出现错误:无法绑定到 XAML 中的 Uid 或 Name 属性
Is there anyway to get hyperlink content from resource file in xaml. I know there is way on back hand code. I have tried using Name="{x:Static Properties:Resources.stringname}" but it throws error
Or if there is any work around?
I have tried Name but it gives an error:Not able to bind to Uid or Name property in XAML
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
怎么样:
How about:
您无法绑定到 XAML 中的
Name
,因为它在内部用于创建引用并且需要是唯一的。一些相关位来自 MSDN:You cannot bind to the
Name
in XAML since it is being used internally to create references and it needs to be unique. Some relevant bits from MSDN: