警告:属性“已卸载”类型“HyperlinkBut​​ton”上不存在

发布于 2024-11-02 06:09:37 字数 557 浏览 0 评论 0原文

我最近从一位已故同事那里继承了我们的 Silverlight 应用程序,同时也继承了一长串错误。我以前从未使用过 Silverlight...

我已将“Unloaded”事件处理程序添加到现有的 HyperlinkBut​​ton 控件,并且一切正常(即卸载控件时调用处理程序),除了有关当我构建项目时的 XAML:

警告:XML 命名空间“http://schemas.microsoft.com/winfx/2006/xaml/presentation”中的类型“HyperlinkBut​​ton”上不存在属性“Unloaded”。

谷歌搜索,我发现了一般错误“警告:属性 '{0}' 在 XML 命名空间 '{2}' 中的类型 '{1}' 上不存在”的示例,并且它们全部似乎与升级到较新版本的 Silverlight SDK 的人有关。

我假设我需要将 xmlns 引用更新为比“2006”更新的内容,但是有人知道我需要使用什么吗?我可以在网上找到的所有 HyperlinkBut​​ton 示例都使用该版本,并且我在 MSDN 文档中也看不到 HyperlinkBut​​ton 类的任何内容。

I've recently inherited our Silverlight application from a departed colleague, along with a long list of bugs. I've never worked with Silverlight before...

I've added an 'Unloaded' event handler to an existing HyperlinkButton control, and it all works fine (i.e. the handler is called when the control is unloaded) except for a warning about the XAML when I build the project:


warning : The property 'Unloaded' does not exist on the type 'HyperlinkButton' in the XML namespace 'http://schemas.microsoft.com/winfx/2006/xaml/presentation'.

Googling, I've found examples of the generic error "warning : The property '{0}' does not exist on the type '{1}' in the XML namespace '{2}'", and they all seem to relate to people having upgraded to newer versions of the Silverlight SDK.

I assume that I need to update the xmlns reference to something newer than "2006", but does anyone know what I need to use? All the HyperlinkButton examples I can find online use that version, and I can't see anything in the MSDN documentation for the HyperlinkButton class either.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

溺ぐ爱和你が 2024-11-09 06:09:37

您的项目将是 Silverlight 3,但是 FrameworkElements 的卸载事件已添加到 Silveright 4 中,因此您会收到错误。

Your project will be Silverlight 3, however the unloaded event for FrameworkElements was added in Silveright 4 hence the error you are getting.

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