我真的没有办法在SimpleDialog
内部显示MetroWindow
。有可能吗?
注意: SimpleDialog
已使用CustomDialog
重命名。
答案 0 :(得分:1)
你见过documentation for dialogs吗?我还建议您查看sample application。
答案 1 :(得分:0)
我自己只是看着这个。要在内部显示对话框,请在MetroWindow上使用ShowMetroDialogAsync方法:
来自用户控件:
((MetroWindow)Window.GetWindow(this)).ShowMetroDialogAsync(myMetroDialog);
您可以使用MetroWindow.HideMetroDialogAsync从对话框内关闭它:
parentWindow.HideMetroDialogAsync(this);