-
实现一个编辑窗口全屏,并可以保存编辑的内容。
实现一个编辑窗口全屏,并可以保存编辑的内容。-To achieve a full-screen editing window, and can save the edited content.
- 2022-03-17 18:18:59下载
- 积分:1
-
简单易懂屏幕捕捉程序,改变静态框背景色,图标的Listcontrol配合属性页
简单易懂屏幕捕捉程序,改变静态框背景色,图标的Listcontrol配合属性页,基本控件的使用
- 2022-03-03 07:57:48下载
- 积分:1
-
步态识别(Gait_recogniton_PCA)
基于主分量分析的步态识别系统,识别率高达94.44 -Gait recognition based on principal component analysis research
- 2022-03-20 22:29:08下载
- 积分:1
-
打印预览
Grid控件实现打印效果,可以实现对grid插入各种图标,以及对不同单元格设置自定义的颜色,以及插入行和删除行的操作,对这些操作可以实现自定义打打印效果
- 2022-03-06 08:48:32下载
- 积分:1
-
Office2003可以很容易地使浮动工具栏菜单也可以实现皮肤…
可方便做出office2003菜单和浮动工具栏还有可实现office2007皮肤界面的综合控件包-TMS.component.Pack.v5.0.5.0 解密版-Office2003 can easily make a floating toolbar menu and also the skin can be achieved office2007 interface-TMS.component.Pack.v5.0.5.0 an integrated control package解密版
- 2022-03-18 23:17:44下载
- 积分:1
-
有时候我们制作了很多个属性页,由于页数过多分成了几行,这是的用户难以分辨到底哪一个是被激活的.所以,我制作了这段代码,把激活的属性页的标题文字设为高亮....
有时候我们制作了很多个属性页,由于页数过多分成了几行,这是的用户难以分辨到底哪一个是被激活的.所以,我制作了这段代码,把激活的属性页的标题文字设为高亮.-Sometimes we produce a lot of attributes page, the page is divided into a few too many firms, it is difficult to distinguish the users which in the end was an activated. So, I produced this code, activation of the title page attribute set highlighted text.
- 2023-05-13 03:20:02下载
- 积分:1
-
vc++.net2003 使应用程序界面以任意透明度显示 yxifu
vc++.net2003 使应用程序界面以任意透明度显示 yxifu-vc. Net2003 make application programming interfaces to show transparency arbitrary yxifu
- 2022-07-17 19:59:03下载
- 积分:1
-
tree结构,树形结构的实现,包括权限的设置
tree结构,树形结构的实现,包括权限的设置-tree structure, tree structure realization, including permissions settings
- 2022-03-07 04:14:44下载
- 积分:1
-
Infernce algorithms
这个
- 2022-03-22 13:23:13下载
- 积分: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