C# 오토 마우스 매크로 소스코드
C# 매크로 오토마우스 프로그램 소스코드 using System.Runtime.InteropServices; namespace WinFormsApp1 { public partial class Form1 : Form { [DllImport("user32.dll")] private static extern void mouse_event(int dwFlags, int dx, int dy, int dwData, int dwExtraInfo); public Form1() { InitializeComponent(); } private void Form1..
프로그래밍/C#
2024. 10. 17. 20:20