嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):78630559
本次赞助数额为: 1 元微信扫码支付:1 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
一键隐藏进程列表中的进程对应的界面,上班偷偷玩游戏,有人来了,一点按钮,对应的界面就消失了,任务栏里也没有,也切换不出来,完整的隐藏
private void button3_Click(object sender, EventArgs e)
{
for(int i=0;i<checkedListBox1.Items.Count;i )
{
if (checkedListBox1.GetItemChecked(i))
{
try
{
int handle = FindWindow(null, ps[i].MainWindowTitle);
ShowWindow(handle, Sw_Hide);
}
catch
{
}
}
}
}
private void button4_Click(object sender, EventArgs e)
{
for (int i = 0; i < checkedListBox1.Items.Count; i )
{
if (checkedListBox1.GetItemChecked(i))
{
try
{
int handle = FindWindow(null, ps[i].MainWindowTitle);
ShowWindow(handle, Sw_Show);
}
catch
{
}
}
}
}