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.
作成したユーザー コントロールのボタンから MainPage で作成したポップアップを閉じる方法を探しています。助言がありますか?
Microsoft の ApplicationSettings の例で良い方法を見つけました。
Popup parent = this.Parent as Popup; if (parent != null) { parent.IsOpen = false; }