本文介绍了WPF:如何区分Window.Close()调用和系统菜单“关闭”操作?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在WPF中,以下是关闭 Window $ c $的不同方法c>:
In WPF, here are different ways to close a Window
:
1) Window.Close()
2)选择从窗口系统菜单(左上)
关闭)3)单击窗口标题栏上的 X按钮(右上)
4)键盘快捷键:Alt + F4
1) Window.Close()
2) Select 'Close' from Window system menu (top left)
3) Click 'X' button on Window title bar (top right)
4) Keyboard shortcut: Alt+F4
所有这些操作都会触发WPF事件 Window.Closing
All of these actions trigger WPF event Window.Closing
如何区分这两种类型的操作?
How do I distinguish between these two types of actions?
在Excel / VBA中,这是可能的: VBA.VbQueryClose.vbFormCode
与 VBA.VbQueryClose.vbFormControlMenu
。
In Excel/VBA this is possible: VBA.VbQueryClose.vbFormCode
vs VBA.VbQueryClose.vbFormControlMenu
.
希望这会有所帮助。
这篇关于WPF:如何区分Window.Close()调用和系统菜单“关闭”操作?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!