-
Visual C# 隐藏、显示开始按钮
C# 隐藏、显示开始按钮,把Windows的开始菜单隐藏起来,看不到“开始”菜单了,Windows7则隐藏了窗口图标,不过这样会很不方便哦,本源码只是学习C#与Windows之间的相关编程技巧,下面的代码实现了隐藏显示开始菜单的功能:
[DllImport("user32.dll")]//寻找窗口列表中第一个符合指定条件的顶级窗口
public static extern int FindWindow(string lpClassName, string lpWindowName);
[DllImport("user32.dll")]//在窗口列表中寻找与指定条件相符的第一个子窗口
public static extern int FindWindowEx(int hWnd1, int hWnd2, string lpsz1, string lpsz2);
[DllImport("user32.dll")]//控制窗口的可见性
public static extern int ShowWindow(int hwnd, int nCmdShow);
private void button1_Click(object sender, EventArgs e)
{
if (radioButton1.Checked)
ShowWindow(FindWindowEx(FindWindow("Shell_TrayWnd", null), 0, "Button", null), SW_HIDE);//隐藏开始按钮
else if (radioButton2.Checked)
ShowWindow(FindWindowEx(FindWindow("Shell_TrayWnd", null), 0, "Button", null), SW_SHOW);//显示开始按钮
}
- 2022-05-20 11:42:02下载
- 积分:1
-
学生成绩管理源代码!!!使用微软新技术c#编写的
学生成绩管理源代码!!!使用微软新技术c#编写的-Student achievement management of source code! ! ! New technologies using Microsoft c# Prepared
- 2022-04-07 06:13:31下载
- 积分:1
-
Euler公式与改进Euler比较。
Euler公式与改进Euler比较。-Euler formula and improve Euler comparison.
- 2022-07-02 18:34:40下载
- 积分:1
-
基于灰色GM(1,1)理论的电力系统负荷预测程序
基于灰色GM(1,1)理论的电力系统负荷预测程序
-Based on Gray GM (1,1) theory of power system load forecasting procedures
- 2022-07-13 01:12:44下载
- 积分:1
-
kingview source, including its main function, convenient and practical
kingview源码
包括其主要功能,
方便实用-kingview source, including its main function, convenient and practical
- 2022-07-08 19:41:49下载
- 积分:1
-
在VC++环境下完全使用API实现的俄罗斯方块
在VC++环境下完全使用API实现的俄罗斯方块-VC++ API implementation of the Tetris
- 2022-10-18 15:15:03下载
- 积分:1
-
O-qpsk 在 systemview 的实现方法, 源代码哦-O-qpsk is implemented by systemview . all is source code very well.
- 2022-11-14 17:40:04下载
- 积分:1
-
VB制作
VB制作--不可思议的3D飞机游戏,好东西-VB production-- incredible 3D aircraft games, good things
- 2022-05-24 23:29:10下载
- 积分:1
-
Delphi界面控件Next Component Suitev4.5下载
Delphi界面控件Next Component Suitev4.5下载,用此控件可实现丰富的窗体元素,比如窗体TAB选项卡、多级菜单、皮肤界面等。控件包内包括的例子相当多,方便新手快速入手Next Component Suitev控件的使用。
- 2023-02-06 06:25:04下载
- 积分:1
-
优化大师,c#, 优化大师,c#,
优化大师,c#, 优化大师,c#, -优化大师,c#,优化大师,c#,优化大师,c#,优化大师,c#,
- 2023-03-02 10:55:04下载
- 积分:1