1

我正在寻找一种方法来从我创建的用户控件中的按钮关闭在 MainPage 中创建的弹出窗口。有什么建议么?

4

1 回答 1

1

在 Microsoft 的 ApplicationSettings 示例中找到了一个好方法。

        Popup parent = this.Parent as Popup;
        if (parent != null)
        {
            parent.IsOpen = false;
        }
于 2012-08-21T02:41:11.257 回答