-
一个模拟windwos记事本的程序,用vs2008开发,还有很多不足,基本功能还是具备了...
一个模拟windwos记事本的程序,用vs2008开发,还有很多不足,基本功能还是具备了-An analog windwos Notepad program, using vs2008 development, there are many shortcomings, the basic function is to possess
- 2022-06-22 04:10:59下载
- 积分:1
-
使用JAVA SWT 的范例,主要用于画图,图片的基本控件,供学习参考...
使用JAVA SWT 的范例,主要用于画图,图片的基本控件,供学习参考-use Java SWT examples, mainly for the drawing, the basic picture controls for the study reference
- 2022-06-28 03:48:06下载
- 积分:1
-
对话框中的试图
对话框中的试图-Dialog box in an attempt
- 2023-05-03 16:10:03下载
- 积分:1
-
用Delphi编写的对任务栏进行编辑的小程序
用Delphi编写的对任务栏进行编辑的小程序-prepared by the task bar to a small editing procedures
- 2022-07-19 19:45:53下载
- 积分:1
-
一个用于创建COM接口与LCC的建议
A proposal for creating COM interfaces with lcc-win32 with an extended structure holding the interface vtable and the required variables for one instance of the COM interface.
Demo for Drag and Drop.-A proposal for creating COM interfaces wit h LCC- win32 with an extended structure holding the interface vtable and the required variable s for one instance of the COM interface. Demo for Drag and Drop.
- 2023-02-15 06:55:03下载
- 积分:1
-
这个我做的一款计算器的代码,大家可以参考一下.
这个我做的一款计算器的代码,大家可以参考一下.-I do this one calculator code, we can take a look.
- 2022-03-07 03:25:39下载
- 积分:1
-
HTC_Diamond_Skin全套 forwm6.1
HTC_Diamond_Skin全套 forwm6.1-HTC_Diamond_Skin a full set of forwm6.1
- 2022-08-24 13:12:42下载
- 积分:1
-
直接运行资源文件中的可执行文件
直接运行资源文件中的可执行文件提供了两种调用方式,具体可见 Demo.dpr如果资源文件里的执行文件使用了窗口,那么需要在Demo.dpr引用FORMS如果资源文件里的执行文件使用了ADO,那么也要在Demoh.dpr里引用如果DEMO.dpr 缺少资源文件里的执行文件需要的单元,那么便会发生无法预料的错误
- 2023-05-30 11:40:03下载
- 积分:1
-
a hexadecimal editor VC
一个十六进制编辑器VC源码程序-a hexadecimal editor VC-source programs
- 2022-02-05 18:23:17下载
- 积分: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