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.
Silverlight 窗口中有“确定”和“取消”按钮。
单击该窗口上的取消按钮时,如何关闭窗口?
如果 SilverLight 应用程序托管在 WebBrowser 中,那么您可以将浏览器重定向到另一个页面:
HtmlPage.Window.Navigate(new Uri("../Login/Login.aspx", UriKind.Relative));
你可以使用下一条语句:
System.Windows.Browser.HtmlPage.Window.Invoke("close");