如何在 mahapps metro ShowMessageAsync 中包含更改密码的选项

how to include the option of change password in mahapps metro ShowMessageAsync

在 mahapps 的 ShowMessageAsync 对话框中是否有更改密码的选项。或者有没有办法向此对话框添加自定义按钮或超链接,我可以通过更改密码选项打开另一个自定义 window?

您不应使用现有的消息对话框,而应创建自定义对话框。只需创建继承 UserControl 的对话框并调用

var customDialog = new CustomDialog {
    Title = "Your title",
    Content = new YourCustomDialog()
};
await window.ShowMetroDialogAsync(customDialog);

您可以在 sample application 中找到更复杂的示例。