我有一个应用程序将图片上传到我的网站。上传时我想暂时禁止用户关闭程序。有没有办法做到这一点?通过暂时禁用关闭按钮或拦截关闭呼叫?
答案 0 :(得分:0)
使用Window.WindowStyle
属性。我还建议不要在任务栏中显示窗口。
<Window x:Class="WpfApplication1.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Background="AliceBlue" WindowStyle="None" ShowInTaskbar="False" >
</Window>
无论如何,请注意,只要他可以访问任务管理器,就无法阻止用户关闭您的程序。