HOME 2 mesiacov pred
rodič
commit
a0556391df
3 zmenil súbory, kde vykonal 90 pridanie a 0 odobranie
  1. 9 0
      StrangeTools.sln
  2. 71 0
      WndTricker/Program.cs
  3. 10 0
      WndTricker/WndTricker.csproj

+ 9 - 0
StrangeTools.sln

@@ -102,6 +102,10 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TcpForwarderKestrel", "TcpF
 EndProject
 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebPnCbzMaker", "WebPnCbzMaker\WebPnCbzMaker.csproj", "{FD45C8F2-2FFB-4856-BB29-5083250FCADB}"
 EndProject
+Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "2025", "2025", "{02EA681E-C7D8-13C7-8484-4AC65E1B71E8}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WndTricker", "WndTricker\WndTricker.csproj", "{4AE26278-2703-4F64-8A95-9348E0FFCF91}"
+EndProject
 Global
 	GlobalSection(SolutionConfigurationPlatforms) = preSolution
 		Debug|Any CPU = Debug|Any CPU
@@ -276,6 +280,10 @@ Global
 		{FD45C8F2-2FFB-4856-BB29-5083250FCADB}.Debug|Any CPU.Build.0 = Debug|Any CPU
 		{FD45C8F2-2FFB-4856-BB29-5083250FCADB}.Release|Any CPU.ActiveCfg = Release|Any CPU
 		{FD45C8F2-2FFB-4856-BB29-5083250FCADB}.Release|Any CPU.Build.0 = Release|Any CPU
+		{4AE26278-2703-4F64-8A95-9348E0FFCF91}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+		{4AE26278-2703-4F64-8A95-9348E0FFCF91}.Debug|Any CPU.Build.0 = Debug|Any CPU
+		{4AE26278-2703-4F64-8A95-9348E0FFCF91}.Release|Any CPU.ActiveCfg = Release|Any CPU
+		{4AE26278-2703-4F64-8A95-9348E0FFCF91}.Release|Any CPU.Build.0 = Release|Any CPU
 	EndGlobalSection
 	GlobalSection(SolutionProperties) = preSolution
 		HideSolutionNode = FALSE
@@ -326,6 +334,7 @@ Global
 		{901435ED-A436-46F1-A9A6-6EEB70C80153} = {CBD862C8-490D-4612-809E-ACDF4E4B2306}
 		{E4A37BF3-9EF5-482D-982F-479EC47EFA00} = {3120ADE6-C606-42F1-9AA8-B7F1A8933CD7}
 		{FD45C8F2-2FFB-4856-BB29-5083250FCADB} = {3120ADE6-C606-42F1-9AA8-B7F1A8933CD7}
+		{4AE26278-2703-4F64-8A95-9348E0FFCF91} = {02EA681E-C7D8-13C7-8484-4AC65E1B71E8}
 	EndGlobalSection
 	GlobalSection(ExtensibilityGlobals) = postSolution
 		SolutionGuid = {017A8C58-F476-47E7-9CBE-077A98A76AB4}

+ 71 - 0
WndTricker/Program.cs

@@ -0,0 +1,71 @@
+// See https://aka.ms/new-console-template for more information
+
+using System.Runtime.InteropServices;
+
+// 常量定义
+const int GWL_STYLE = -16;
+const int WS_BORDER = 0x00800000;  // 边框
+const int WS_CAPTION = 0x00C00000; // 标题栏
+const int WS_THICKFRAME = 0x00040000; // 可调整大小的框
+const int SW_SHOWNORMAL = 1;
+
+
+if (args.Length < 5)
+{
+    Console.WriteLine("用法: WndTricker <窗口标题> <x坐标> <y坐标> <宽度> <高度>");
+    return;
+}
+
+// 从命令行参数获取窗口标题、x、y、宽度和高度
+string windowTitle = args[0];
+if (!int.TryParse(args[1], out int x) ||
+    !int.TryParse(args[2], out int y) ||
+    !int.TryParse(args[3], out int width) ||
+    !int.TryParse(args[4], out int height))
+{
+    Console.WriteLine("参数无效,请确保 x, y, 宽度和高度是整数");
+    return;
+}
+
+// 查找窗口
+IntPtr hWnd = FindWindow(null, windowTitle);
+if (hWnd == IntPtr.Zero)
+{
+    Console.WriteLine("窗口未找到");
+    return;
+}
+
+// 去掉窗口的边框
+int currentStyle = GetWindowLong(hWnd, GWL_STYLE);
+SetWindowLong(hWnd, GWL_STYLE, currentStyle & ~(WS_BORDER | WS_CAPTION | WS_THICKFRAME));
+
+// 移动窗口到指定位置并设置大小
+SetWindowPos(hWnd, IntPtr.Zero, x, y, width, height, 0);
+
+// 显示窗口
+ShowWindow(hWnd, SW_SHOWNORMAL);
+
+Console.WriteLine($"窗口已去掉边框并移动到 ({x}, {y}),大小已设置为 {width}x{height}");
+
+
+return;
+
+
+// Windows API 函数声明
+[DllImport("user32.dll", CharSet = CharSet.Auto)]
+static extern IntPtr FindWindow(string lpClassName, string lpWindowName);
+
+[DllImport("user32.dll")]
+static extern int SetWindowLong(IntPtr hWnd, int nIndex, int dwNewLong);
+
+[DllImport("user32.dll")]
+static extern bool SetWindowPos(IntPtr hWnd, IntPtr hWndInsertAfter, int x, int y, int width, int height, uint uFlags);
+
+[DllImport("user32.dll")]
+static extern bool ShowWindow(IntPtr hWnd, int nCmdShow);
+
+
+
+// 获取窗口样式
+[DllImport("user32.dll")]
+static extern int GetWindowLong(IntPtr hWnd, int nIndex);

+ 10 - 0
WndTricker/WndTricker.csproj

@@ -0,0 +1,10 @@
+<Project Sdk="Microsoft.NET.Sdk">
+
+  <PropertyGroup>
+    <OutputType>Exe</OutputType>
+    <TargetFramework>net8.0</TargetFramework>
+    <ImplicitUsings>enable</ImplicitUsings>
+    <Nullable>enable</Nullable>
+  </PropertyGroup>
+
+</Project>