C#如何利用API去除窗体的标题栏
[DllImport("User32.dll", CharSet = CharSet.Auto)]
public static extern int SetWindowLong(IntPtr hWnd, int nIndex, int dwNewLong);
SetWindowLong(this.Handle, -16, 369164288);
赞 (0)
[DllImport("User32.dll", CharSet = CharSet.Auto)]
public static extern int SetWindowLong(IntPtr hWnd, int nIndex, int dwNewLong);
SetWindowLong(this.Handle, -16, 369164288);