-
Duilib窗体增加阴影效果
应用背景用于在Duilib界面库产生的窗体周围添加阴影效果关键技术1. 在要添加阴影效果的窗体类中包含WndShadow的头文件,并创建对应类型的成员变量m_WndShadow。
2. 在WinMain处添加初始化
// Initiation of the shadow
CWndShadow::Initialize(hInstance);
3. 窗体OnCreate中设置
LRESULT OnCreate(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled)
{
LONG styleValue = ::GetWindowLong(*this, GWL_STYLE);
styleValue &= ~WS_CAPTION;
::SetWindowLong(*this, GWL_STYLE, styleValue | WS_CLIPSIBLINGS | WS_CLIPCHILDREN);
m_WndShadow.Create(m_hWnd);
m_WndShadow.SetSize(4);
m_WndShadow.SetPosition(0, 0);
//blablabla....
return 0;
}
说明:此处为了更清除的看到窗体边框阴影效果,我将调用的地方原来的m_WndShadow.SetSize(4);改为
了m_WndShadow.SetSize(15);正常情况下,Size设置为4的效果即可。
- 2022-06-18 09:40:40下载
- 积分:1
-
一个简单使用的汽车管理系统,对初学者可以学习熟悉VB编程环境,尽快掌握高质量软件开发技术...
一个简单使用的汽车管理系统,对初学者可以学习熟悉VB编程环境,尽快掌握高质量软件开发技术-use of a simple vehicle management system for beginners can learn familiar with VB programming environment, as master of high-quality software development technology
- 2022-02-12 20:35:57下载
- 积分:1
-
采用tcp方式,实现文字聊天的服务端,在vc环境下实现
采用tcp方式,实现文字聊天的服务端,在vc环境下实现
- 2023-01-28 01:35:04下载
- 积分:1
-
类以于RealPlayer播放器中界面的多种显示模式(如:正常、精简模式)的实现方法...
类以于RealPlayer播放器中界面的多种显示模式(如:正常、精简模式)的实现方法-category in a player RealPlayer interface of a variety of display modes (such as : normal, streamlining models) Method
- 2022-02-24 21:21:30下载
- 积分:1
-
through palette procedures can easily find the appropriate color with the CDC ca...
通过调色程序可以很方便的找到合适的颜色 用CDC类的SetTextColor()函数和FillRect()函数改变文本框的字体颜色和背景颜色-through palette procedures can easily find the appropriate color with the CDC category SetTextColor () function and FillRect () function to change the text box font color and background color
- 2023-01-24 09:40:04下载
- 积分:1
-
GridView自定义控件源码GridView自定义控件支持自定义页面底…
GridView自定义控件源码
GridView自定义控件,支持自定义页码显示,排序导出Excel等
用到自带的Sqldatasource控件,附加即可
开发环境:VS2008+Sql2005-GridView custom control source GridView custom control to support custom page display, sorting, etc. used to export Excel
- 2022-05-23 20:18:29下载
- 积分:1
-
界面设计工具Xtreme Toolkit Pro v9.6.0.1 Source.rar
界面设计工具Xtreme Toolkit Pro v9.6.0.1 Source.rar-interface design tool Xtreme Toolkit Pro v9.6.0.1 Source.rar
- 2022-08-09 11:19:35下载
- 积分:1
-
mingugi the qt programming interface
mingugi的qt界面下的编程-mingugi the qt programming interface
- 2022-02-25 16:11:01下载
- 积分:1
-
一个简单的实现Windows编程的程序。适合初学者了解Window编程应用。...
一个简单的实现Windows编程的程序。适合初学者了解Window编程应用。-Realize a simple Windows programming procedures. Window programming suitable for beginners to understand the application.
- 2023-03-27 11:00:03下载
- 积分:1
-
犯错
对话框界面的实例很不错的......对话框界面的实例很不错的-err
- 2022-07-17 02:23:42下载
- 积分:1