-
这是一个对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
-
Delphi编写的一个特效程序, 限制鼠标移动,隐藏标题栏上的按钮,窗体背景渐变,透明背景
Delphi编写的一个特效程序, 限制鼠标移动,隐藏标题栏上的按钮,窗体背景渐变,透明背景-Delphi effects of a procedure, the mouse movement restrictions, hidden Biaodilanshang button Windows Background gradual, transparent background
- 2022-03-11 07:29:45下载
- 积分:1
-
该示例程序使用了几个应用程序定义的子窗口,其中包含了各种控件。您可以通过点主窗口顶部的5个单选框,在不同子窗口之间进行切换。
该示例程序使用了几个应用程序定义的子窗口,其中包含了各种控件。您可以通过点主窗口顶部的5个单选框,在不同子窗口之间进行切换。-The sample program uses a number of application-defined sub-window, which contains a variety of controls. You can point the main window at the top five single-box, in different sub-window to switch between.
- 2022-03-25 22:08:24下载
- 积分:1
-
设置窗体颜色渐变,了解窗体颜色的设置。(基于对话框编程)...
设置窗体颜色渐变,了解窗体颜色的设置。(基于对话框编程)-Setting form color gradient to understand the form the color settings. (Based on Dialog Programming)
- 2022-10-24 00:35:04下载
- 积分:1
-
自己做的分割窗体的小程序,可以给初学的朋友一个参考
自己做的分割窗体的小程序,可以给初学的朋友一个参考-own segmentation Form small procedure could give the novice a reference to a friend
- 2022-02-28 09:58:04下载
- 积分:1
-
界面控件flexcell.zip
界面控件flexcell.zip -interface controls flexcell.zip flexcell.zip
- 2022-07-24 07:46:37下载
- 积分:1
-
Windows 2000有个新的“Open”对话框,这个对话框的左边有一个Places Bar,要想让这个对话框出现,必须在::GetOpenFileName函...
Windows 2000有个新的“Open”对话框,这个对话框的左边有一个Places Bar,要想让这个对话框出现,必须在::GetOpenFileName函数中传递OPENFILENAME结构,这个结构隐藏在MFC的CFileDialog类中-Windows 2000 with a new "Open" dialog, the dialog box on the left is a Places Bar, to get this dialog box appears to be : : GetOpenFileName transfer function OPENFILENAME structure, the structure hidden in the MFC CFileDialog class
- 2022-01-28 21:19:41下载
- 积分: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
-
模态对话框中使用多种控件。为进度 控件编程;为连续的跟踪栏控件编程;为
不连续的跟踪栏控件编程;为微调按纽控件编程;设置一个图像列表;为树形控...
模态对话框中使用多种控件。为进度 控件编程;为连续的跟踪栏控件编程;为
不连续的跟踪栏控件编程;为微调按纽控件编程;设置一个图像列表;为树形控
件编程。-Modal Dialog use of a variety of controls. Control of the progress of programming; For continuous tracking control column programming; For discrete control column tracking programming; Button controls for fine-tuning programming; Set up a list of images; Tree controls for programming.
- 2022-12-08 02:00:03下载
- 积分:1
-
总结了非
总结了非模式对话框与父窗口进行数据交换的各种方法。-Summed up the non-modal dialog with the parent window, the various methods for data exchange.
- 2022-03-12 05:58:53下载
- 积分:1