标签: c# xaml windows-8 microsoft-metro
我正在寻找一种方法来关闭从我创建的用户控件中的按钮创建的MainPage中的弹出窗口。有什么建议吗?
答案 0 :(得分:1)
在Microsoft的ApplicationSettings示例中找到了一个好方法。
Popup parent = this.Parent as Popup; if (parent != null) { parent.IsOpen = false; }