本文介绍了通过从任务管理器中删除应用程序进程来阻止我的应用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我是.net程序员,我需要一个soln,我正在创建一个Windows应用程序,我想通过从任务管理器中删除应用程序进程来阻止我的应用程序。就像当我们试图杀死一个Windows进程时,任何人都有任何想法PLZ评论我
i am a .net programmer, i need a soln, am creating a windows application, i want to prevent my application by killing application process from the task manager. Like when we try to kill a windows process, anyone have any idea plz comment me
推荐答案
public Form1()
{
InitializeComponent();
this.FormClosing += Form1_FormClosing;
}
void Form1_FormClosing(object sender, FormClosingEventArgs e)
{
if (e.CloseReason == CloseReason.TaskManagerClosing) // if the user tries to closes the process using the "End task" button in task manager, cancel this
{
e.Cancel = true;
}
}
希望这有帮助。
Hope this helps.
这篇关于通过从任务管理器中删除应用程序进程来阻止我的应用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!