-
画线对鼠标移动的风险
draw line on mouse move in VC-draw line on mouse move in VC++
- 2022-04-06 22:07:24下载
- 积分:1
-
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
-
基于6.0软件开发环境的自动化平台办公室
一个办公化自动平台软件,基于visualstudio2005开发环境-Office of an automated platform for software development environment based on visualstudio2005
- 2023-03-28 05:55:03下载
- 积分:1
-
C#连接网络Access数据库
C#连接网络Access数据库,不是连接本地的Access,是通过局域网连接指定电脑中的Access数据库,和连接SqlServer不太一样,Sql有固有的网络连接方式,Access倒是没有,那么如何通过网络连接Access,通过本源码例子,你就会学习到使用数据源、用户名密码的方法连接网络中的Access。
- 2022-01-28 13:15:49下载
- 积分:1
-
ERwin的使用教程,非常好,本人就事看此教程入门的.
ERwin的使用教程,非常好,本人就事看此教程入门的.-ERwin use of tutorials, very good, I do look at this tutorial on getting started.
- 2022-02-05 04:20:35下载
- 积分:1
-
可以录制在线 视屏的一款好的软件 大家可以用一下 具体用法可以搜索摆渡...
可以录制在线 视屏的一款好的软件 大家可以用一下 具体用法可以搜索摆渡
- 2022-08-10 19:22:32下载
- 积分:1
-
酷虎网同学录V1.0
酷虎网同学录V1.0 -Cool Tiger Network website V1.0
- 2022-05-19 07:11:35下载
- 积分:1
-
两个编辑框中的滚动条同时滚动,实现编辑框中的内容同步显示...
两个编辑框中的滚动条同时滚动,实现编辑框中的内容同步显示-Two edit box while rolling the scroll bar, the contents of the edit box to achieve synchronous display
- 2022-06-21 12:08:54下载
- 积分:1
-
SPI
SPI
- 2023-07-05 10:45:04下载
- 积分:1
-
经典数独游戏,本人做了一些改进。功能更强大!
经典数独游戏,本人做了一些改进。功能更强大!-shudu powerful and special~
- 2022-04-18 05:25:15下载
- 积分:1