-
可以实现对单个文件名(或是整个文件夹内的所有文件名)按照指定的替换规则替换...
可以实现对单个文件名(或是整个文件夹内的所有文件名)按照指定的替换规则替换-can achieve right individual files (or the entire folder of all documents) in accordance with specified rules Replacement Replacement
- 2022-05-26 19:22:55下载
- 积分:1
-
MFC application framework used to prepare based on Doc/View architecture of Wind...
采用MFC应用框架编写基于Doc/View结构的Windows应用程序.掌握文档与视图之间的相互关系。-MFC application framework used to prepare based on Doc/View architecture of Windows applications. Master document and view the relationship between.
- 2022-03-12 11:07:35下载
- 积分:1
-
对初学MASM32的人有用,是个制作窗口的源程序,希望大家喜欢.
对初学MASM32的人有用,是个制作窗口的源程序,希望大家喜欢.-right novice MASM32 useful to the people, is making the source code window, hope you like them.
- 2022-08-10 07:22:59下载
- 积分:1
-
时间timeline很漂亮的timeline
时间timeline很漂亮的timeline-Time timeline of the timeline is very beautiful
- 2022-01-25 21:15:36下载
- 积分:1
-
以位图位为进度条的独立应用程序,可以实现位图导入,设计自己的进度条!...
以位图位为进度条的独立应用程序,可以实现位图导入,设计自己的进度条!-to bitmap places for the progress of the independent application program, can achieve a bitmap introduction, design their own pace!
- 2022-01-22 17:38:30下载
- 积分:1
-
鼠标控制速度和方向
鼠标控制速度和方向-mouse control speed and direction
- 2022-03-04 13:52:19下载
- 积分:1
-
这是一个对VC中的通用对话框窗口功能的一个扩展,它可以在你选择图像文件的时候直接对特殊性内容进行预览,使用方便...
这是一个对VC中的通用对话框窗口功能的一个扩展,它可以在你选择图像文件的时候直接对特殊性内容进行预览,使用方便-this is a VC General dialog window function in an expansion, it can choose images in your document directly to the special preview content, ease of use
- 2022-03-21 08:00:20下载
- 积分:1
-
If you need to achieve multiple views of the display window, then look at this i...
如果你需要实现多个视图的窗口的显示,那么看看这个是有好处的.这个程序虽然简单,但是他告诉了你怎样去操作多个视图的转换.-If you need to achieve multiple views of the display window, then look at this is a good thing. This procedure is simple, but he tells you how to operate the various View conversion.
- 2022-02-12 21:08:25下载
- 积分:1
-
VC ucos2 source code, can run, you can use, that can be trimmed
VC ucos2的源代码,可运行,可使用,可裁减-VC ucos2 source code, can run, you can use, that can be trimmed
- 2022-02-01 15:50:20下载
- 积分: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