博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SendMessage2
阅读量:5311 次
发布时间:2019-06-14

本文共 847 字,大约阅读时间需要 2 分钟。

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms; using System.Diagnostics;using System.Threading;using System.Runtime.InteropServices; namespace T1{    public partial class Form1 : Form    {        public Form1()        {            InitializeComponent();        }         [DllImport("User32.dll")]        private static extern void SendMessage(IntPtr hwnd, int msg, int wParam, int lParam);         private void button1_Click(object sender, EventArgs e)        {            Process p = Process.Start("T2.exe");            Thread.Sleep(200);//短暂等待程序启动            IntPtr hWnd=p.MainWindowHandle;            Text = hWnd.ToString();            SendMessage(hWnd, 0, 0, 0);        }    }}

  

转载于:https://www.cnblogs.com/yan1345/p/3504319.html

你可能感兴趣的文章
UVA - 1592 Database
查看>>
Fine Uploader文件上传组件
查看>>
javascript中的传递参数
查看>>
objective-c overview(二)
查看>>
python查询mangodb
查看>>
consonant combination
查看>>
驱动的本质
查看>>
Swift的高级分享 - Swift中的逻辑控制器
查看>>
Swagger简单介绍
查看>>
Python数据分析入门案例
查看>>
vue-devtools 获取到 vuex store 和 Vue 实例的?
查看>>
Linux 中【./】和【/】和【.】之间有什么区别?
查看>>
内存地址对齐
查看>>
看门狗 (监控芯片)
查看>>
css背景样式
查看>>
JavaScript介绍
查看>>
开源网络漏洞扫描软件
查看>>
yum 命令跳过特定(指定)软件包升级方法
查看>>
创新课程管理系统数据库设计心得
查看>>
Hallo wolrd!
查看>>