-
multi
集多个功能的对话框程序-multi-function dialog box procedure
- 2022-02-05 06:17:18下载
- 积分:1
-
SourceCode Dialog Windows Application return SID, UserName and DomainName.
Выв...
SourceCode Dialog Windows Application return SID, UserName and DomainName.
Выводит имя текущего пользователя и имя домена на экран.(RUS)
+Russian comments
- 2022-11-11 04:30:03下载
- 积分:1
-
设计一个窗体,能够继承其他窗体所包含的类及控件。
设计一个窗体,能够继承其他窗体所包含的类及控件。-a Form Design, to inherit other forms included in the categories and controls.
- 2022-11-08 14:50:02下载
- 积分:1
-
另一种风格的Docking Windows 很适合界面编程者使用~
另一种风格的Docking Windows 很适合界面编程者使用~-different style Docking Windows programming interface is suitable for use ~
- 2022-01-26 03:46:22下载
- 积分:1
-
一个流行
一个弹出对话框代码,点击次数,并记录(适于初学者)-A pop-up dialog box code, clicks, and record (for beginners)
- 2022-10-25 12:50:04下载
- 积分:1
-
delphi的通用对话框组件,可让你很容易的制作出包括作者、版权信息、EMAIL等的精美关于对话框...
delphi的通用对话框组件,可让你很容易的制作出包括作者、版权信息、EMAIL等的精美关于对话框-the common dialog components, so you can easily produce, including author, copyright information, such as e-mail box on the exquisite
- 2022-04-12 23:44:11下载
- 积分:1
-
this a ocx ,please use
this a ocx ,please use-this a ocx, please use
- 2022-01-28 15:27:43下载
- 积分:1
-
实现了对话框应用程序在重设大小时控件的自动布局
实现了对话框应用程序在重设大小时控件的自动布局-achieved a dialog application to re-establish the size of the automatic layout of controls
- 2022-01-25 17:59:27下载
- 积分:1
-
不规则窗口! 个性化用户界面!
不规则窗口! 个性化用户界面!-Irregular window! Personalized user interface! ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- 2023-05-14 02:50:04下载
- 积分: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