从浏览器中打开 silverlight 页面

发布于 2024-08-04 11:26:02 字数 50 浏览 5 评论 0原文

有没有办法通过在浏览器外模式下单击应用程序来在浏览器中打开页面?

谢谢

Is there any way to open a page in the browser by clicking the app in out-of-browser mode?

Thank you

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

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

发布评论

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

评论(2

梦里兽 2024-08-11 11:26:02

超链接按钮有效。我尝试使用 HtmlPage.Window.Navigate 但没有成功。而且由于该按钮支持内容,因此创建链接图像之类的内容很简单。

HyperlinkButton works. I was trying with HtmlPage.Window.Navigate with no success. And because the button supports content it is simple to create something like a linked image.

放赐 2024-08-11 11:26:02

同意 Artur 的观点,简单的方法是:

1) 将超链接按钮放入您的 Silverlight 页面中。
2) 生成 Click 事件并提供:

hyperlink.NavigateUri = new Uri("Url",UriKind.RelativeOrAbsolute);

3) 只需运行应用程序并单击超链接按钮。

Agreed with Artur and simple way to do this is :

1) Put HyperLink Button in your Silverlight page.
2) Generate Click event and provide :

hyperlink.NavigateUri = new Uri("Url",UriKind.RelativeOrAbsolute);

3) Simply Run the Application and Click on HyperLink Button.

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