Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法通过在浏览器外模式下单击应用程序在浏览器中打开页面?
谢谢
超链接按钮有效。我尝试使用 HtmlPage.Window.Navigate 没有成功。由于按钮支持内容,因此创建链接图像之类的内容很简单。
同意 Artur 和简单的方法是:
1) 将超链接按钮放在您的 Silverlight 页面中。2)生成点击事件并提供:
hyperlink.NavigateUri = new Uri("Url",UriKind.RelativeOrAbsolute);
3) 只需运行应用程序并单击 HyperLink 按钮。