C++ windows.h命令实践

今天想给大家分享一下我在学习windows.h时写的一段代码,可以给大家参考。
话不多说,上代码

#include <iostream>
#include <cstring>
#include <conio.h>
#include <windows.h>
using namespace std;
void findwin()
{
	HWND window;
	string wname="";
	cout << "窗口名称:";
	cin >> wname;
	cout << "发送关闭指令...";
	LPCTSTR lpc=wname.c_str();
	window=FindWindow(NULL,lpc);
    SendMessage(window,WM_CLOSE,0,0);
    cout << "完成。";
    getch();
}
void vkeyboard()
{
	HWND window;
	string wname="";
	char wchar;
	cout << "窗口名称:";
	cin >> wname;
	cout << "\n输入字符:";
	getchar();getchar();
	wchar=getch();
	cout << "\n发送字符...";
	LPCTSTR lpc=wname.c_str();
	window=FindWindow(NULL,lpc);
	SendMessage(window,WM_CHAR,WPARAM(wchar),0);
	cout << "完成。";
	getch();
}
void alttest()
{
	cout << "Alt键侦测\n当检测到Alt键被按下输出提示\n侦测时长:10s\nEnter开始:";
	getch();
	cout << "\n============侦测开始============\n\n";
	for(int i=1;i<=100;i++)
	{
		if(i%10==0)
		{
			cout << "\n第" << i/10 << "秒,还剩" << 10-i/10 << "秒。\n" << endl; 
		}
		if((int)GetAsyncKeyState(VK_MENU)<0)
		{
			//MessageBox(NULL, "Alt按下","侦测程序",MB_ICONEXCLAMATION|MB_OK);
			cout << "侦测到Alt按下。"; 
		}
		Sleep(100);
	}
	cout << "\n============侦测结束============\n";
	getch();
}
int main()
{
	char choice;
	cout << "系统操作测试\n1.寻找窗口并关闭它\n2.虚拟键盘输入\n3.alt键侦测\n";
	// getchar();
	choice=getch();
	cout << endl;
	if(choice=='1')
	{
		findwin();
	}
	else if(choice=='2')
	{
		vkeyboard();
	}
	else if(choice=='3')
	{
		alttest();
	}
	else
	{
		cout << "未知命令。";
		getch();
	}
	return 0;
}

好了,没什么好说的了,希望对各位有帮助
拜拜~

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值