是否可以在内部显示SimpleDialog?

时间:2014-12-30 06:27:13

标签: mahapps.metro

我真的没有办法在SimpleDialog内部显示MetroWindow。有可能吗?

注意: SimpleDialog已使用CustomDialog重命名。

2 个答案:

答案 0 :(得分:1)

你见过documentation for dialogs吗?我还建议您查看sample application

答案 1 :(得分:0)

我自己只是看着这个。要在内部显示对话框,请在MetroWindow上使用ShowMetroDialogAsync方法:

来自用户控件:

((MetroWindow)Window.GetWindow(this)).ShowMetroDialogAsync(myMetroDialog);

您可以使用MetroWindow.HideMetroDialogAsync从对话框内关闭它:

parentWindow.HideMetroDialogAsync(this);