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ウィンドウには[OK]ボタンと[キャンセル]ボタンがあります。
そのウィンドウのキャンセルボタンをクリックすると、どうすればウィンドウを閉じることができますか?
SilverLight アプリケーションが WebBrowser でホストされている場合は、ブラウザーを別のページにリダイレクトできます。
HtmlPage.Window.Navigate(new Uri("../Login/Login.aspx", UriKind.Relative));
次のステートメントを使用できます。
System.Windows.Browser.HtmlPage.Window.Invoke("close");