• 大小: 0.03M
    文件类型: .7z
    金币: 1
    下载: 0 次
    发布日期: 2020-12-26
  • 语言: C#
  • 标签: C#  消息  

资源简介

消息

资源截图

代码片段和文件信息

using System;
using System.Runtime.InteropServices;

namespace 发消息
{
    public class Test
    {
        public const int USER = 0x500;
        public const int MYMESSAGE = USER + 1;

        public struct My_lParam
        {
            public int i;
            public string s;
        }

        [DllImport(“User32.dll“ EntryPoint = “SendMessage“)]

        private static extern int SendMessage(
            IntPtr hWnd
            int Msg
            int wParam
            ref My_lParam lParam
            );

        [DllImport(“User32.dll“ EntryPoint = “FindWindow“)]
        private extern static IntPtr FindWindow(string lpClassName string lpWindowName);

        public void SendMessage()
        {
            IntPtr ptr = FindWindow(null “Main“);//获

评论

共有 条评论