博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C#向win32程序窗口中的文本框设置指定文本
阅读量:6435 次
发布时间:2019-06-23

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

public partial class Form1 : Form

 {

//设置文本内容的消息

private const int WM_SETTEXT = 0x000C;

 //鼠标点击消息

const int BM_CLICK = 0x00F5;[DllImport("user32.dll")]

private static extern IntPtr FindWindow(
  string lpClassName,
  string lpWindowName);
[DllImport("User32.dll")]
private static extern IntPtr FindWindowEx(
  IntPtr hwndParent,
  IntPtr hwndChildAfter,
  string lpszClass,
string lpszWindows);
[DllImport("User32.dll")]
private static extern Int32 SendMessage(
  IntPtr hWnd,       
  int Msg,       
  IntPtr wParam,      
StringBuilder lParam);

        [DllImport("user32.dll ", CharSet = CharSet.Unicode)]

        public static extern IntPtr PostMessage(IntPtr hwnd, int wMsg, IntPtr wParam, IntPtr lParam);
pri}vate

 void button1_Click(object sender, EventArgs e)

{
  // 返回写字板主窗口句柄
  IntPtr hWnd = FindWindow("Notepad", "Untitled - Notepad");
  if (!hWnd.Equals(IntPtr.Zero))
  {
    //返回写字板编辑窗口句柄
    IntPtr edithWnd = FindWindowEx(hWnd, IntPtr.Zero, "Edit", null);
    if (!edithWnd.Equals(IntPtr.Zero))
      // 发送WM_SETTEXT 消息: "Hello World!"
      SendMessage(edithWnd, WM_SETTEXT, IntPtr.Zero, new StringBuilder("Hello World!"));
  }
}
}

 

另:

 Message msg = Message.Create(hwnd_button, BM_CLICK, new IntPtr(0), new IntPtr(0));

//点击hwnd_button句柄对应的按钮
 PostMessage(msg.HWnd, msg.Msg, msg.WParam, msg.LParam);

 

转载于:https://www.cnblogs.com/Rising/archive/2011/12/04/2276001.html

你可能感兴趣的文章
直播 3.0 时代,在线教育行业的裂变和重构
查看>>
SpringBoot使用Nacos服务发现
查看>>
2017双11技术揭秘—阿里巴巴数据库技术架构演进
查看>>
我的友情链接
查看>>
Spring框架 - AOP使用
查看>>
Ansible常用内置属性
查看>>
C#使用正则表达式校验邮箱
查看>>
Linux自动清理N天前目录文件
查看>>
方便 快捷 安全的EVO邮件服务器
查看>>
bash的快捷键
查看>>
关于如何编写linux设备驱动
查看>>
DNS服务
查看>>
九州云开放“边缘云”能力 助力中国联通延展业务边界
查看>>
Linux进程状态(ps stat)之R、S、D、T、Z、X
查看>>
ME3750和普通3750的区别
查看>>
H3C交换系列之Super VLAN
查看>>
项目采购管理
查看>>
linux系统使用tomcat服务器部署web项目
查看>>
虚拟文件系统相关结构描述【续】
查看>>
我的友情链接
查看>>