码迷,mamicode.com
首页 >  
搜索关键字:setwindowlong    ( 44个结果
WPF 通过Win32SDK修改窗口样式
原文:WPF 通过Win32SDK修改窗口样式 使用函数为 SetWindowLong GetWindowLong 注册函数 [DllImport("user32.dll", EntryPoint = "GetWindowLong")] public static extern int GetWin... ...
分类:Windows程序   时间:2020-05-06 01:37:23    阅读次数:81
delphi窗体按钮灰化禁用
1。使最小化按钮变灰:setwindowlong(handle,gwl_style,getwindowlong(handle,gwl_style) and not ws_minimizebox );2。使最大化按钮变灰:setwindowlong(handle,gwl_style,getwindow ...
分类:Windows程序   时间:2019-10-14 12:57:03    阅读次数:152
mfc设置dialog对话框透明
::SetWindowLong(GetSafeHwnd(), GWL_EXSTYLE, ::GetWindowLongPtr(GetSafeHwnd(), GWL_EXSTYLE) | WS_EX_LAYERED); this->SetLayeredWindowAttributes(0, (255 ...
分类:编程语言   时间:2019-07-28 09:15:21    阅读次数:169
制作鼠标击穿窗体
实现效果: 知识运用: API函数SetWindowLong和GetWindowLong 在调用API函数的时候要添加 System.Runtime.InteropService命令空间 [DllImport("user32", EntryPoint = "GetWindowLong")] //从指 ...
分类:Windows程序   时间:2018-12-14 21:11:11    阅读次数:243
C# enable为false时不变颜色
1 [System.Runtime.InteropServices.DllImport("user32.dll ")] 2 public static extern int SetWindowLong(IntPtr hWnd, int nIndex, int wndproc); 3 [System.... ...
分类:Windows程序   时间:2018-07-22 11:34:00    阅读次数:602
vb代码之-------翻转标题栏
入吾QQ群183435019(学习 交流+唠嗑) 程序结构运行如下 代码 Private Declare Function SetWindowLong Lib "user32.dll" Alias "SetWindowLongA" (ByVal hwnd As Long, ByVal nIndex ...
分类:其他好文   时间:2018-01-17 00:22:31    阅读次数:155
soui 覆盖任务栏全屏
覆盖任务栏全屏显示: ong styles = ::GetWindowLong(m_hWnd,GWL_STYLE); styles |= WS_POPUP; styles &= ~WS_THICKFRAME; ::SetWindowLong(m_hWnd,GWL_STYLE,styles); int ...
分类:其他好文   时间:2017-11-24 15:03:50    阅读次数:201
windows中控制台窗口和普通窗口有什么区别?
1. 窗口都是windows标准窗口,有窗口句柄,但是console window没有消息循环,直接从缓冲区读数据,显示数据。 windows中普通窗口都有自己的窗口过程, 我可以使用SetWindowlong来修改窗口过程, 但是控制台窗口修改后去无法收到消息, 都是窗口为什么控制台的不能通过修改 ...
分类:Windows程序   时间:2017-06-04 19:55:01    阅读次数:392
Windows界面编程第四篇 异形窗体(转)
原文转自 http://blog.csdn.net/morewindows/article/details/8451638 上一篇《Windows界面编程第三篇 异形窗体 普通版》介绍了异形窗口(异形窗体)的创建,其主要步骤为——先通过创建位图画刷来做窗口的背景画刷,再通过SetWindowLong ...
分类:Windows程序   时间:2017-04-29 16:11:01    阅读次数:295
mfc 动态为控件添加事件1
知识点: 认识窗口过程 GetWindowLong SetWindowLong 为动态控件绑定事件 一、获取窗口过程 二、设置新窗口过程 1、书写一个新窗口过程函数 窗口过程格式 LRESULT CALLBACK WindowProc( HWND hwnd, // 窗口句柄 UINT uMsg, /... ...
分类:编程语言   时间:2016-12-28 11:48:41    阅读次数:218
44条   1 2 3 4 5 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!