无论如何,有没有办法从 WPF 中的资源文件中获取超链接内容

发布于 2024-11-07 09:41:54 字数 186 浏览 1 评论 0原文

无论如何,是否可以从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

抠脚大汉 2024-11-14 09:41:54

怎么样:

<Hyperlink NavigateUri="{x:Static Properties:Resources.SomeUrl}">
    <Run Text="{x:Static Properties:Resources.SomeUrl_Description}"/>
</Hyperlink>

How about:

<Hyperlink NavigateUri="{x:Static Properties:Resources.SomeUrl}">
    <Run Text="{x:Static Properties:Resources.SomeUrl_Description}"/>
</Hyperlink>
风和你 2024-11-14 09:41:54

您无法绑定到 XAML 中的 Name,因为它在内部用于创建引用并且需要是唯一的。一些相关位来自 MSDN

名称是极少数无法动画的依赖属性之一(IsAnimationProhibited 在元数据中为 true),因为名称本身对于定位动画至关重要。数据绑定名称在技术上是可行的,但这是一种极其罕见的情况,因为数据绑定名称无法满足属性的主要预期目的:为代码隐藏提供标识符连接点。

名称在名称范围内必须是唯一的。有关详细信息,请参阅 WPF XAML 名称范围。

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:

Name is one of the very few dependency properties that cannot be animated (IsAnimationProhibited is true in metadata), because the name itself is vital for targeting an animation. Data binding a Name is technically possible, but is an extremely uncommon scenario because a data-bound Name cannot serve the main intended purpose of the property: to provide an identifier connection point for code-behind.

Names must be unique within a namescope. For more information, see WPF XAML Namescopes.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文