-
skin with a realization of the absolute control procedures beautiful interface s...
一个用dephi+皮肤控件实现的绝对漂亮的程序界面解决方案。还很少见到有做得这么漂亮的界面-skin with a realization of the absolute control procedures beautiful interface solutions. There are also rarely seen doing so beautiful interface
- 2022-03-24 18:03:41下载
- 积分:1
-
高级顶层窗口是一种无标题栏、菜单、工具条的一种常居顶层的窗口,最常见的例子就是输入法窗口,比如智能ABC窗口。这类窗口的特点除了上边所说的,最重要的就是窗口移动...
高级顶层窗口是一种无标题栏、菜单、工具条的一种常居顶层的窗口,最常见的例子就是输入法窗口,比如智能ABC窗口。这类窗口的特点除了上边所说的,最重要的就是窗口移动。普通窗口移动是通过标题栏由系统自动实现的,对于这类窗口就无法依靠系统了,需要手工实现。实现的方法有两种:
手工处理WM_MOVE、WM_LBUTTONUP消息,并根据鼠标的移动自己实现窗口移动过程中的绘制;
在WM_MOVE消息处理函数中通过向自己发送参数wParam为HTCAPTION lParam为鼠标位置的WM_NCLBUTTONDOWN消息实现窗口移动,此时窗口移动过程的绘制由系统实现。
显然,后者较前者简单。本文采用后者。-top window is a non-title bar, menus, tools of a regular Habitat top of the window, the most common example is the input window, such as smart window ABC. This window features in addition to the upside, the most important thing is moving the window. General Mobile through the window title bar automatically by the system for such window will not be able to rely on the system, and will need to achieve manually. Implementation of two ways : manual processing WM_MOVE, WM_LBUTTONUP news, and in accordance with the movement of the mouse to achieve their mobile window in the process of drawing; In WM_MOVE message processing function to send itself through the parameters wParam HTCAPTION
- 2022-08-06 00:41:04下载
- 积分:1
-
给软件添加 自己喜欢的 启动画面 很有趣的一个小教程
给软件添加 自己喜欢的 启动画面 很有趣的一个小教程-To add your own favorite software startup screen very interesting, a small Tutorial
- 2023-07-08 06:25:05下载
- 积分:1
-
一个取色板的例子
一个取色板的例子--An example of color picker
- 2022-04-21 10:05:37下载
- 积分:1
-
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
-
prepared Outlook style interface similar to those of controls.
Delphi下编写类似于Outlook风格界面的控件。-prepared Outlook style interface similar to those of controls.
- 2023-06-18 18:20:04下载
- 积分:1
-
该程序是能够在托盘图标区域加载24位真彩色位图程序,抽象了一个完整的托盘图标类,可以方便移植到任何程序中。...
该程序是能够在托盘图标区域加载24位真彩色位图程序,抽象了一个完整的托盘图标类,可以方便移植到任何程序中。-the program is capable of loading tray icon regional 24-bit true color map process, abstract a complete tray icon categories, can easily migrate to any process.
- 2022-05-31 09:06:09下载
- 积分:1
-
G R SYSTEMS
数字信号处理小项目使用matlab搜索和下载数字信号处理小项目使用matlab开源项目/source;…数字信号处理小项目使用matlab搜索和下载数字信号处理小项目使用matlab开源项目/source;…数字信号处理小项目使用matlab搜索和下载数字信号处理小项目使用matlab开源项目/源代码…数字信号处理小项目使用matlab搜索和下载数字信号处理小项目使用
- 2023-08-02 23:25:03下载
- 积分:1
-
Kinect视场角的测量
测Kinect体感设备的RGB摄像头的水平视场角和垂直视场角,以防止在实际应用中,在规定距离内将画面投射到有效区域外。
- 2023-01-02 06:00:04下载
- 积分:1
-
俄罗斯方块
俄罗斯方块 windows程序 原创 windows GUI 应用程序
核心算法的实现,但是没有加入统计分数和排名等功能,添加是很容易的
- 2022-08-05 18:57:16下载
- 积分:1