zoukankan
html css js c++ java
显示/隐藏任务栏,屏蔽任务管理器(winform)
Code
1
//
引入命名控件:
2
using
Microsoft.Win32;
3
using
System.Runtime.InteropServices;
4
5
[DllImport(
"
user32.dll
"
, EntryPoint
=
"
FindWindowA
"
)]
6
public
static
extern
IntPtr FindWindowA(
string
lp1,
string
lp2);
//
获取任务栏
7
8
[DllImport(
"
user32.dll
"
, EntryPoint
=
"
ShowWindow
"
)]
9
public
static
extern
IntPtr ShowWindow(IntPtr hWnd,
int
_value);
//
显示/隐藏任务栏
10
11
/**/
///
<summary>
12
///
是否屏蔽CTRL+ALT+DEL
13
///
</summary>
14
///
<param name="i">
1=屏蔽 0=取消屏蔽
</param>
15
public
static
void
ShieldMissionTask(
int
i)
16
{
17
try
18
{
19
//
屏蔽 Ctrl + Alt + Del 键
20
RegistryKey key
=
Registry.CurrentUser;
21
RegistryKey key1
=
key.CreateSubKey(
@"
Software\Microsoft\Windows\CurrentVersion\Policies\System
"
);
22
key1.SetValue(
"
DisableTaskMgr
"
, i, Microsoft.Win32.RegistryValueKind.DWord);
23
}
24
catch
(Exception ex)
25
{
26
throw
ex;
27
}
28
}
29
30
/**/
///
<summary>
31
///
是否显示任务栏
32
///
</summary>
33
///
<param name="i">
5=显示 0=隐藏
</param>
34
public
static
void
ShieldTaskBar(
int
i)
35
{
36
try
37
{
38
IntPtr hTray
=
FindWindowA(
"
Shell_TrayWnd
"
, String.Empty);
//
获取任务栏
39
ShowWindow(hTray, i);
//
隐藏任务栏
40
}
41
catch
(Exception ex)
42
{
43
throw
ex;
44
}
45
}
查看全文
相关阅读:
c# 自定义位数生成激活码
接口interface和抽象类型abstract
winform自动升级方案
泛型介绍
泛型约束形式
登录状态保持Session/Cookie
EFCore 2.0引用标量函数
.net生成条形码
通用手机号、身份证号等隐藏显示方法
.net core api Post请求
原文地址:https://www.cnblogs.com/gossip/p/1313228.html
最新文章
ElasticSearch学习笔记--2、ES相关配置
ElasticSearch学习笔记--1、安装以及运行
centos 7 修改ssh登录端口
Redis 锁的实现方案
Prometheus部署各服务的Node监控
Prometheus安装部署说明
kubernetes学习一:安装及部署第一个Web应用
Jumpserver 5.2版本安装与部署
k8s+Jenkins+GitLab-自动化部署项目
关于nginx proxy_next_upstream 重试 和 max_fails的那些事
热门文章
linux 网络虚拟化: network namespace 简介
mysql5.7报错ERROR 1819解决办法
CentOS 7下JumpServer安装及配置
shell脚本监控httpd服务80端口状态
windows下redis安装及应用
web.config configSections自定义section
NPOI 导出excel 通用方法
.net 生成缩略图
asp.net uploadfile 上传文件,连接已重置问题
asp.net 2.0 Session丢失问题
Copyright © 2011-2022 走看看