-
一个华丽的界面
使用方法
方法一:
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
-
In one project I was involved in, we had to display font selection dialog. My Pr...
In one project I was involved in, we had to display font selection dialog. My Product Manager had some issues with MFC s CFontDialog. He is very focused on reducing support costs by simplifying user interface, to eliminate anything that might be confusing or misleading. OK, it is hard to argue against this goal. In case of CFontDialog, he didn t like all the controls that were unnecessary for our application. Here is what the standard CFontDialog looks like
- 2022-02-14 23:07:49下载
- 积分:1
-
demonstration SDI single
演示SDI的单窗口显示内容可修改的表格式数据,并且有嵌入的滚动字幕显示,自动日期显示,自动保存窗口状态和数据内容,下次自动调用重显-demonstration SDI single-window content can modify the form of data and is embedded subtitles rolling, the automatic date display, automatic window state and the preservation of data, the next automatically called weight
- 2022-01-30 21:59:15下载
- 积分:1
-
Generate a variety of graphics algorithms, a variety of straight, all kinds of c...
各种图形生成算法,各种直线,各种曲线,各种圆的生成算法-Generate a variety of graphics algorithms, a variety of straight, all kinds of curves, a variety of circle generation algorithm
- 2022-06-03 06:12:50下载
- 积分:1
-
可以从这个程序,打开关闭其他程序,并执行点击命令,修改名称。...
可以从这个程序,打开关闭其他程序,并执行点击命令,修改名称。-From this process, open to close other programs and to implement the click command, modify the name.
- 2022-02-02 04:40:51下载
- 积分:1
-
巨酷的一个对画框示例
巨酷的一个对画框示例-giant cool one pair of frames Example
- 2022-05-17 16:38:17下载
- 积分:1
-
This demo is from << MFC anwswer book>> , Program show to how to exp...
This demo is from > , Program show to how to expand your dialog or hide part of dialog. -This demo is from lt;lt; MFC anwswer bookgt;gt; , Program show to how to expand your dialog or hide part of dialog.
- 2023-05-27 22:15:08下载
- 积分:1
-
这是我从国外网站上下载的一个对话框窗口的源代码,效果不错...
这是我从国外网站上下载的一个对话框窗口的源代码,效果不错-This is my web site from abroad, a dialog window to download the source code, the effect of good
- 2022-01-22 15:27:26下载
- 积分:1
-
按照特定曲线游动的致谢条,可设置显示内容,滚动速度等,常用于商业软件界面...
按照特定曲线游动的致谢条,可设置显示内容,滚动速度等,常用于商业软件界面-Swimming in accordance with the specific curve of Thanks be to set the display, scroll speed, commonly used in commercial software interface
- 2023-04-26 21:10:03下载
- 积分:1
-
通过对话框窗口进行上下文帮助,以完善程序
通过对话框窗口进行上下文帮助,以完善程序-dialog window
- 2023-08-07 20:00:04下载
- 积分:1