Files
lserp_cs_5.0/插件库/Lskj.MyControl/BrowserSetting/NativeMethod.cs
T
2026-07-10 15:25:05 +08:00

18 lines
455 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;
namespace Lskj.MyControl.BrowserSetting
{
public class NativeMethod
{
[DllImport("user32.dll")]
[return: MarshalAs(UnmanagedType.Bool)]
public static extern bool SetWindowPos(IntPtr hWnd, IntPtr hWndInsertAfter, int X, int Y, int cx, int cy, uint uFlags);
}
}