-
这是一个简单的Visual C++ 6多文档(MDI)项目,允许开放…
This a simple visual C++ 6.0 multiple document (MDI) project that allows opening / saving multiple types of documents. Normally, when you start an MDI project, you are allowed to associate one file type -This a simple visual C++ 6.0 multiple document (MDI) project that allows opening/saving multiple types of documents. Normally, when you start an MDI project, you are allowed to associate one file type
- 2023-07-05 02:40:03下载
- 积分:1
-
模仿器
VisualBoyAdvance-1.7.2
- 2022-01-26 00:18:00下载
- 积分:1
-
一款具备vista风格的非常漂亮的界面源码
一款具备vista风格的非常漂亮的界面源码-Have a very beautiful vista style interface source
- 2022-01-26 00:06:41下载
- 积分:1
-
一个多用途的计算器,可以进行自定义运算,缺点是自定义的种类有限...
一个多用途的计算器,可以进行自定义运算,缺点是自定义的种类有限-a multi-purpose calculator, can be defined computation, since the definition of disadvantage is the limited range
- 2022-08-14 22:30:43下载
- 积分:1
-
怎么样,好成绩!小改变可以使其效果消失。这个...
怎么样,效果不错吧!稍加修改还可以作出淡出淡入的效果. 注意第三个参数(128)不要取得太小了,为0的话完全透明,你就找不到窗体了!
小小心得,一吐为快.希望对初学者有所帮助.如有不妥,欢迎指正.
-how kind, good results! Little changes can be made out of the effect fades. The attention of the third parameter (128) not made too small, 0 completely transparent, you can not find the form! Little experience, a spit faster. Want to help beginners. If it is not appropriate to welcome correction.
- 2022-04-28 02:26:17下载
- 积分:1
-
FIC8120 方案 IPCAM_V1_ramdisk
FIC8120 方案 IPCAM_V1_ramdisk-FIC8120 program IPCAM_V1_ramdisk
- 2022-04-16 15:37:07下载
- 积分:1
-
一个类似tip的东西,但比编写tip要简单。仅为抛砖引玉。
一个类似tip的东西,但比编写tip要简单。仅为抛砖引玉。-a similar tip things, but more than prepared to simple tip. Only congregate.
- 2023-08-22 08:00:02下载
- 积分:1
-
VB篇写的VISTA程序效果,很漂亮,喜欢的赶快下载学习下吧
VB篇写的VISTA程序效果,很漂亮,喜欢的赶快下载学习下吧-VISTA
- 2023-02-27 21:30:03下载
- 积分:1
-
一个华丽的界面
使用方法
方法一:
ModifyStyle( WS_CAPTION, WS_MINIMIZEBOX, SWP_D...
一个华丽的界面
使用方法
方法一:
ModifyStyle( WS_CAPTION, WS_MINIMIZEBOX, SWP_DRAWFRAME ) //设置图标
方法二:
不用上面的,但是要去掉对话框的title属性
void CPageDlg::OnPaint()
{
if (IsIconic())
{
...
}
else
{
// CDialog::OnPaint() //一定要去掉该句
CPaintDC dc(this) //对话框的dc
CDC dcMem
dcMem.CreateCompatibleDC(&dc) //创建与对话框dc兼容的内存dc
CRect rect
GetClientRect(&rect)
BITMAP bitMap
m_bmpBackground.GetBitmap(&bitMap)
CBitmap *pbmpOld=dcMem.SelectObject(&m_bmpBackground) //将背景位图选入内存dc中
dc.StretchBlt(0,0,rect.Width(),rect.Height(),&dcMem,0,0,bitMap.bmWidth,bitMap.bmHeight,SRCCOPY) //将内存dc中的位图拉伸显示在对话框的dc中
//dc.BitBlt(0,0,rect.Width(),rect.Height(),&dcMem,0,0,SRCCOPY)
}
}
-a gorgeous interface to use a method : ModifyStyle (WS_CAPTION, WS_MINIMIZEBOX. SWP_DRAWFRAME)// Settings icon two ways : not above, However, to remove the title attribute dialog void CPageDlg : : OnPaint () (if (IsIconic ()) (...) e
- 2022-08-21 14:24:22下载
- 积分:1
-
实现类似Excel和Visual C++里文件夹式样的标签控制(三),这是这个系列的第三个例子,完整的在单文档下实现了文件夹样式的标签控制...
实现类似Excel和Visual C++里文件夹式样的标签控制(三),这是这个系列的第三个例子,完整的在单文档下实现了文件夹样式的标签控制-And achieve a similar Excel in Visual C++ Tab style folders control (three), this series This is the third example, a complete implementation in a single document under a folder-style tags to control
- 2022-08-21 22:29:04下载
- 积分:1