gpt4 book ai didi

c# - 防止用户通过按 ESC 按钮关闭对话框

转载 作者:行者123 更新时间:2023-12-02 20:26:23 27 4
gpt4 key购买 nike

我正在使用 UWP,并使用 ContentDialog 来显示内容。我想防止用户通过按 ESC 按钮关闭对话框。我尝试了这个解决方案,但是当我设置 Cancel = true 时。我无法处理主按钮中的点击事件:

How to prevent the ContentDialog from closing when home key is pressed in Windows phone 8.1..?

我们有什么办法可以预防吗?无论如何,我的目的是锁定屏幕。

最佳答案

这是我的解决方案:

 dialog.Closing += DialogClosingEvent;

private void DialogClosingEvent(ContentDialog sender, ContentDialogClosingEventArgs args)
{
// This mean user does click on Primary or Secondary button
if(args.Result == ContentDialogResult.None)
{
args.Cancel = true;
}
}

关于c# - 防止用户通过按 ESC 按钮关闭对话框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49808537/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com