WPF 通过Win32SDK修改窗口样式
Posted lonelyxmas
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WPF 通过Win32SDK修改窗口样式相关的知识,希望对你有一定的参考价值。
原文:WPF 通过Win32SDK修改窗口样式
使用函数为
SetWindowLong
GetWindowLong
注册函数
[DllImport("user32.dll", EntryPoint = "GetWindowLong")] public static extern int GetWindowLong(IntPtr hwnd, int nIndex); [DllImport("user32.dll", EntryPoint = "SetWindowLong")] public static extern int SetWindowLong(IntPtr hMenu, int nIndex, int dwNewLong);
使用函数
private void DisableSizebox() { int GWL_STYLE = -16; int WS_THICKFRAME = 0x00040000; IntPtr handle = new WindowInteropHelper(this).Handle; int nStyle = GetWindowLong(handle, GWL_STYLE);
//禁用调整窗口大小 nStyle &= ~WS_THICKFRAME; SetWindowLong(handle, GWL_STYLE,nStyle); }
注意 启用窗口样式为
nStyle|=WS_THICKFRAME
如果是多个样式启用或者禁止为
//禁用 nStyle &= ~WS_CAPTION&~WS_MINIMIZEBOX; //启用 nStyle |= WS_MAXIMIZEBOX| WS_CAPTION;
具体样式请参考具体Windows Style
注意:msdn中均为Long型,去掉L即可为int,
本函数均为32位,对应64位请参考网页的GetWindowLongPtrA,SetWindowLongPtrA使用方法不变
以上是关于WPF 通过Win32SDK修改窗口样式的主要内容,如果未能解决你的问题,请参考以下文章
WPF OpenFileDialog 与 Win32 父窗口;窗口关闭时没有重新获得焦点
将 win32 托管到 wpf 在 Windows 7 中不起作用
c 语言用win32sdk方式如何创建一个没有标题栏和边框的窗口
Win32 使用 SetCurrentProcessExplicitAppUserModelID 关联多个进程 在任务栏合并 WPF 多进程窗口