-
示波器的演示,动态曲线的绘制和界面编程功能的实现。
示波器的演示,动态曲线的绘制和界面编程功能的实现。-oscilloscope demo, dynamic curve mapping and programming interface functions to achieve.
- 2022-09-11 23:15:03下载
- 积分: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
-
vc++模仿Windows任务栏
vc++模仿Windows任务栏-vc imitate the Windows task bar
- 2022-11-10 06:50:03下载
- 积分:1
-
在安装程序中,向导是必不可少的。你有没有对现在那些通用的界面感到平淡?看看这个Wizard 97 Property Sheets 的例子吧,你会满意的。...
在安装程序中,向导是必不可少的。你有没有对现在那些通用的界面感到平淡?看看这个Wizard 97 Property Sheets 的例子吧,你会满意的。
-During the installation process, the guide is indispensable. Now you have no common interface which is flat? Look at the Wizard 97 Property Sheets an example, you will satisfied.
- 2022-12-06 08:05:03下载
- 积分:1
-
GUI的消息机制说明文档,让你初步了解消息机制的实现
GUI的消息机制说明文档,让你初步了解消息机制的实现-The message mechanism GUI documentation, so that you know the initial implementation of the message mechanism
- 2022-05-26 14:46:31下载
- 积分:1
-
UI设计实例
手机闹铃小应用的UI设计,当时只是体现个性提醒功能,也额外加了一些其他如:日历等功能。能实现跳转等基本操作。只能说是界面效果有了,具体的功能还是靠源码
- 2022-10-14 02:50:03下载
- 积分:1
-
操作系统进程的挂起和解挂,内存的动态分配以及进程运行完毕后回收内存等。功能齐全,供大家参考...
操作系统进程的挂起和解挂,内存的动态分配以及进程运行完毕后回收内存等。功能齐全,供大家参考-operating system processes linked to the duration of reconciliation, dynamic memory allocation, and the process of recovery after the operation memory. Fully functional, for your reference
- 2022-04-20 15:25:12下载
- 积分:1
-
mp3compressor
MP3压缩机,希望有人能拿到
- 2022-01-27 23:19:18下载
- 积分:1
-
实现了类似于windows资源管理器窗口的程序,其中可以遍历一个文件夹下所有的文件和子文件夹,并可在右侧宣示其相关信息...
实现了类似于windows资源管理器窗口的程序,其中可以遍历一个文件夹下所有的文件和子文件夹,并可在右侧宣示其相关信息-achieve similar to the windows of the window of resource management procedures that can traverse a folder of documents and all subfolders, and may assert its right information
- 2022-04-15 20:19:39下载
- 积分:1
-
jpeg. Lib is a C class to load, save, display, transform BMP, JPEG, GIF, PNG, TI...
jpeg.lib is a C++ class to load, save, display, transform BMP, JPEG, GIF, PNG, TIFF, MNG, ICO, PCX, TGA, WMF, WBMP, JBG, J2K images.-jpeg. Lib is a C class to load, save, display, transform BMP, JPEG, GIF, PNG, TIFF, MNG, ICO, PCX, TGA, WMF, WBMP, JBG, J2K images.
- 2022-06-20 08:39:08下载
- 积分:1