在没有源程序的情况时,如何通过控制鼠标按钮控制电脑exe程序?

有时候想控制第三方软件,但是没有源程序,可以控制鼠标键盘自动操作软件达到我们想要的目的

首先建一个功能类包含窗口控制,鼠标控制和输入控制等

csharp 复制代码
```csharp
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;

namespace 进程程序名
{
    public class Win32Api
    {

        [DllImport("user32.dll", SetLastError = true)]
        static extern IntPtr FindWindow(string lpClassName, string lpWindowName);

        [DllImport("user32.dll")]
        [return: MarshalAs(UnmanagedType.Bool)]
        public static extern bool SetForegroundWindow(IntPtr hWnd);

        [DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = false)]
        public static extern IntPtr SendMessage(IntPtr hWnd, int Msg, int wParam, int lParam);

        [DllImport("user32.dll", SetLastError = true)]
        public static extern bool PostMessage(IntPtr hWnd, uint Msg, int wParam, int lParam);

        [DllImport("user32.dll", SetLastError = true)]
        public static extern void keybd_event(byte bVk, byte bScan, int dwFlags, int dwExtraInfo);

        [DllImport("user32.dll")]
        [return: MarshalAs(UnmanagedType.Bool)]
        public static extern bool ShowWindow(IntPtr hWnd, int nCmdShow);

        public static IntPtr FindWindowByCaption(string caption)
        {
            return FindWindow(null, caption);
        }
        public static IntPtr FindWindowByClassName(string className)
        {
            return FindWindow(className, null);
        }
    }

    public enum SW
    {
        HIDE = 0,
        SHOW_NORMAL = 1,
        SHOW_MINIMIZED = 2,
        MAXIMIZE = 3,
        SHOW_MAXIMIZED = 3,
        SHOW_NO_ACTIVE = 4,
        SHOW = 5,
        MINIMIZE = 6,
        SHOW_MIN_NO_ACTIVE = 7,
        SHOW_NA = 8,
        RESTORE = 9,
        SHOW_DEFAULT = 10,
        FORCE_MINIMIZE = 11
    }
    public enum WMessages : int
    {
        WM_KEYDOWN = 0x100,
        WM_KEYUP = 0x101,
        WM_CHAR = 0x102,
        WM_LBUTTONDOWN = 0x201, //Left mousebutton down
        WM_LBUTTONUP = 0x202,   //Left mousebutton up
        WM_LBUTTONDBLCLK = 0x203, //Left mousebutton doubleclick
        WM_RBUTTONDOWN = 0x204, //Right mousebutton down
        WM_RBUTTONUP = 0x205,   //Right mousebutton up
        WM_RBUTTONDBLCLK = 0x206, //Right mousebutton do
        WM_CUT = 0x300,
        WM_COPY = 0x301,
        WM_PASTE = 0x302,
        WM_CLEAR = 0x303
    }


    public enum Functions : int
    {
        KEYEVENTF_KEYDOWN = 0x0000, // New definition
        KEYEVENTF_EXTENDEDKEY = 0x0001, //Key down flag
        KEYEVENTF_KEYUP = 0x0002, //Key up flag
        VK_LCONTROL = 0xA2, //Left Control key code
        A = 0x41, //A key code
        C = 0x43, //C key code
    }

}
复制代码
再写一个实际应用,根据实际软件大小和位置设置相应的控制点位

using System;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Diagnostics;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace 进程程序名
{
    public class 进程程序名
    {
        public Process 进程程序名
        {
            get => Process.GetProcessesByName("进程程序名").FirstOrDefault(i => i.MainWindowHandle != IntPtr.Zero); 
        }

        public void SendMsg(string msg)
        {
            if(SunnyLink==null)
            {
                Console.WriteLine("请打开SunnyLink窗口,之后重试!");
                return;
            }
            if(string.IsNullOrEmpty(msg))
            {
                Console.WriteLine("发送的字符为空!");
                return;
            }
            var x = 357;
            var y = 540;
            Win32Api.PostMessage(SunnyLink.MainWindowHandle, (uint)WMessages.WM_LBUTTONDOWN, 0, x + (y << 16));
            Win32Api.PostMessage(SunnyLink.MainWindowHandle, (uint)WMessages.WM_LBUTTONUP, 0, x + (y << 16));
            Win32Api.PostMessage(SunnyLink.MainWindowHandle, (uint)WMessages.WM_LBUTTONDOWN, 0, x + (y << 16));
            Win32Api.PostMessage(SunnyLink.MainWindowHandle, (uint)WMessages.WM_LBUTTONUP, 0, x + (y << 16));
            Win32Api.PostMessage(SunnyLink.MainWindowHandle, (uint)WMessages.WM_LBUTTONDOWN, 0, x + (y << 16));
            Win32Api.PostMessage(SunnyLink.MainWindowHandle, (uint)WMessages.WM_LBUTTONUP, 0, x + (y << 16));
            Clipboard.SetText(msg);
            Task.Delay(1).Wait();
            //复制
            Win32Api.keybd_event((byte)Functions.VK_LCONTROL, 0, (int)Functions.KEYEVENTF_KEYDOWN, 0);
            Task.Delay(100).Wait();
            Win32Api.PostMessage(SunnyLink.MainWindowHandle, (int)WMessages.WM_KEYDOWN, (int)System.Windows.Forms.Keys.V, 0);
            Task.Delay(1).Wait();
            Win32Api.keybd_event((byte)Functions.VK_LCONTROL, 0, (int)Functions.KEYEVENTF_KEYUP, 0);
            //发送消息
            Task.Delay(500).Wait();
            x = 920; y = 570;
            Win32Api.PostMessage(SunnyLink.MainWindowHandle, (uint)WMessages.WM_LBUTTONDOWN, 0, x + (y << 16));
            Win32Api.PostMessage(SunnyLink.MainWindowHandle, (uint)WMessages.WM_LBUTTONUP, 0, x + (y << 16));
            x = 940; y = 610;
            Win32Api.PostMessage(SunnyLink.MainWindowHandle, (uint)WMessages.WM_LBUTTONDOWN, 0, x + (y << 16));
            Win32Api.PostMessage(SunnyLink.MainWindowHandle, (uint)WMessages.WM_LBUTTONUP, 0, x + (y << 16));
            Task.Delay(100).Wait();
        }

        public void FindUser(string msg)
        {
            if (SunnyLink == null)
            {
                Console.WriteLine("请打开目标程序窗口,之后重试!");
                return;
            }

            var x = 98;
            var y = 26;
            Win32Api.PostMessage(SunnyLink.MainWindowHandle, (uint)WMessages.WM_LBUTTONDOWN, 0, x + (y << 16));
            Win32Api.PostMessage(SunnyLink.MainWindowHandle, (uint)WMessages.WM_LBUTTONUP, 0, x + (y << 16));
            Clipboard.SetText(msg);
            Task.Delay(100).Wait();
            //复制
            Win32Api.keybd_event((byte)Functions.VK_LCONTROL, 0, (int)Functions.KEYEVENTF_KEYDOWN, 0);
            Task.Delay(100).Wait();
            Win32Api.PostMessage(SunnyLink.MainWindowHandle, (int)WMessages.WM_KEYDOWN, (int)System.Windows.Forms.Keys.V, 0);
            Task.Delay(1).Wait();
            Win32Api.keybd_event((byte)Functions.VK_LCONTROL, 0, (int)Functions.KEYEVENTF_KEYUP, 0);
            Task.Delay(2000).Wait();
            //选择用户
            x = 321; y = 159;
            Win32Api.PostMessage(SunnyLink.MainWindowHandle, (uint)WMessages.WM_LBUTTONDOWN, 0, x + (y << 16));
            Win32Api.PostMessage(SunnyLink.MainWindowHandle, (uint)WMessages.WM_LBUTTONUP, 0, x + (y << 16));
            Task.Delay(100).Wait();
        }

        public void sendMsg(Image image)
        {
            if (SunnyLink == null)
            {
                Console.WriteLine("请打开目标程序窗口,之后重试!");
                return;
            }

            var x = 357;
            var y = 540;
            Win32Api.PostMessage(SunnyLink.MainWindowHandle, (uint)WMessages.WM_LBUTTONDOWN, 0, x + (y << 16));
            Win32Api.PostMessage(SunnyLink.MainWindowHandle, (uint)WMessages.WM_LBUTTONUP, 0, x + (y << 16));
            Win32Api.PostMessage(SunnyLink.MainWindowHandle, (uint)WMessages.WM_LBUTTONDOWN, 0, x + (y << 16));
            Win32Api.PostMessage(SunnyLink.MainWindowHandle, (uint)WMessages.WM_LBUTTONUP, 0, x + (y << 16));
            Win32Api.PostMessage(SunnyLink.MainWindowHandle, (uint)WMessages.WM_LBUTTONDOWN, 0, x + (y << 16));
            Win32Api.PostMessage(SunnyLink.MainWindowHandle, (uint)WMessages.WM_LBUTTONUP, 0, x + (y << 16));
            Clipboard.SetImage(image); 
            Task.Delay(10).Wait();
            //复制
            Win32Api.keybd_event((byte)Functions.VK_LCONTROL, 0, (int)Functions.KEYEVENTF_KEYDOWN, 0);
            Task.Delay(100).Wait();
            Win32Api.PostMessage(SunnyLink.MainWindowHandle, (int)WMessages.WM_KEYDOWN, (int)System.Windows.Forms.Keys.V, 0);
            Task.Delay(1).Wait();
            Win32Api.keybd_event((byte)Functions.VK_LCONTROL, 0, (int)Functions.KEYEVENTF_KEYUP, 0);
            //发送消息
            Task.Delay(100).Wait();
            x = 920; y = 570;
            Win32Api.PostMessage(SunnyLink.MainWindowHandle, (uint)WMessages.WM_LBUTTONDOWN, 0, x + (y << 16));
            Win32Api.PostMessage(SunnyLink.MainWindowHandle, (uint)WMessages.WM_LBUTTONUP, 0, x + (y << 16));
            x = 940; y = 610;
            Win32Api.PostMessage(SunnyLink.MainWindowHandle, (uint)WMessages.WM_LBUTTONDOWN, 0, x + (y << 16));
            Win32Api.PostMessage(SunnyLink.MainWindowHandle, (uint)WMessages.WM_LBUTTONUP, 0, x + (y << 16));
            Task.Delay(100).Wait();
        }
    }
}



运行测试
 class Program
 {
     [STAThreadAttribute]
     static void Main(string[] args)
     {
         SunnyLinker sunnyLinker = new SunnyLinker();
         //找到用户
         进程程序名.FindUser("1234567");
         //发送文本
         for (int i = 0; i < 50; i++)
         {
             进程程序名.SendMsg($"[雪花][雪花][雪花]");
             进程程序名.SendMsg($"你好{i}");
         }
         //发送图片
         Image img = Image.FromFile("img.jpeg");
         进程程序名.sendMsg(img);
     }
 }
相关推荐
m0_5027249517 小时前
qt键盘钩子完善
stm32·qt·计算机外设
_李小白3 天前
【OSG学习笔记】Day 49: 实战鼠标拾取与高亮显示
笔记·学习·计算机外设
科技重器3 天前
科技+绿色|京东方推出低碳3.0显示器,集高性能与绿色低碳于一身
科技·计算机外设
rit84324994 天前
基于STM32的触控USB鼠标设计
stm32·嵌入式硬件·计算机外设
陳10304 天前
Linux:进程的基本理解
linux·计算机外设·进程
站长工具箱5 天前
基于浏览器的键盘按键测试工具功能解析
测试工具·计算机外设
ACP广源盛139246256735 天前
破局 Type‑C 切换器痛点@ACP#GSV6155+LH3828/GSV2221+LH3828 黄金方案
c语言·开发语言·网络·人工智能·嵌入式硬件·计算机外设·电脑
网络探索者6 天前
换了新显示器怎么验?我做了一个开箱即用的全平台屏幕检测工具
计算机外设
weixin_423995007 天前
unity 物体转向鼠标点击方向2d和3d
unity·计算机外设·游戏引擎
破烂儿7 天前
TMUX历史输出滚动查看全攻略(原生快捷键 + 鼠标配置优化)
服务器·学习·计算机外设