-
一个华丽的界面
使用方法
方法一:
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
-
向导与路线图组件为。设计时可用下
Wizard with route map component for delphi. Design time usable next-prev buttons to navigate pages. Adapted to Delphi 2010.
- 2022-02-11 23:44:20下载
- 积分:1
-
本程序自绘标题栏和最大化最小化按钮,以及自绘窗口四周的边框...
本程序自绘标题栏和最大化最小化按钮,以及自绘窗口四周的边框-procedures since the column headings drawn minimize and maximize buttons, and since painted around the window frame
- 2022-03-25 17:14:50下载
- 积分:1
-
一个滚动条的好例子
一个滚动条的好例子-a good example of the
- 2022-08-08 08:24:32下载
- 积分:1
-
使用windowsAPI编写的窗口,代码精炼,便于学习和参考。
使用windowsAPI编写的窗口,代码精炼,便于学习和参考。-WindowsAPI prepared to use a window, code refining, to facilitate learning and reference.
- 2022-02-13 04:12:26下载
- 积分:1
-
让任务栏图标弹出气球提示
让任务栏图标弹出气球提示-allow pop icon task bar balloon suggest
- 2022-01-25 20:00:32下载
- 积分:1
-
qt的不同风格的界面,包括windows,windowsxp,cde,motif和自定义的norwaywood。...
qt的不同风格的界面,包括windows,windowsxp,cde,motif和自定义的norwaywood。-qt of the different styles of interface, including windows, windowsxp, cde, motif, and custom norwaywood.
- 2022-03-12 07:17:49下载
- 积分:1
-
you can see the samople code to study the dialog
VC的dialog学习,你可以看看简单的很-you can see the samople code to study the dialog
- 2023-01-23 17:50:05下载
- 积分:1
-
Based on the dialog, one can choose individual preferences and expertise to the...
基于对话框的,一个可以选择个人爱好和特长的源程序-Based on the dialog, one can choose individual preferences and expertise to the source
- 2022-01-26 05:43:40下载
- 积分:1
-
vc实现分割穿孔窗口源代码
vc实现分割穿孔窗口源代码-vc achieve separate window perforation source code
- 2022-06-13 22:46:42下载
- 积分:1