从浏览器中打开 silverlight 页面
有没有办法通过在浏览器外模式下单击应用程序来在浏览器中打开页面?
谢谢
Is there any way to open a page in the browser by clicking the app in out-of-browser mode?
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
超链接按钮有效。我尝试使用 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.
同意 Artur 的观点,简单的方法是:
1) 将超链接按钮放入您的 Silverlight 页面中。
2) 生成 Click 事件并提供:
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 :
3) Simply Run the Application and Click on HyperLink Button.