Windows 10 UAP中的内容对话框

本文关键字:对话框 UAP Windows | 更新日期: 2023-09-27 18:17:09

我如何做到点击PrimaryButtonClick我的ContentDialog不关闭后?

private void ContentDialog_PrimaryButtonClick(ContentDialog sender, ContentDialogButtonClickEventArgs args)
{
}

Windows 10 UAP中的内容对话框

设置Cancel属性为true:

args.Cancel = true;