OnBackKeyPress 后退键的禁止

it2022-05-05  108

protected override void OnBackKeyPress(System.ComponentModel.CancelEventArgs e)         {             base.OnBackKeyPress(e);

            if (!MessageBox.Show("Are you sure to give up current Trip?", "Trip Edit", MessageBoxButton.OKCancel).Equals(MessageBoxResult.OK))             {                 e.Cancel = true;             }         }

转载于:https://www.cnblogs.com/binaryworms/archive/2012/07/24/2606813.html

相关资源:DirectX修复工具V4.0增强版

最新回复(0)