VC语言

本类阅读TOP10

·VC++ 学习笔记(二)
·用Visual C++打造IE浏览器(1)
·每个开发人员现在应该下载的十种必备工具
·教你用VC6做QQ对对碰外挂程序
·Netmsg 局域网聊天程序
·Windows消息大全
·VC++下使用ADO编写数据库程序
·VC++学习笔记(四)
·非法探取密码的原理及其防范
·怎样在VC++中访问、修改注册表

分类导航
VC语言Delphi
VB语言ASP
PerlJava
Script数据库
其他语言游戏开发
文件格式网站制作
软件工程.NET开发
VC++学习笔记(四)

作者:未知 来源:月光软件站 加入时间:2005-2-28 月光软件站

MessageBox Button Combination IDs:
MB_ABORTRETRYIGNORE Abort,Retry,Ignore
MB_OK   OK
MB_OKCANCEL  OK,Cancel
MB_RETRYCANCEL  Retry,Cancel
MB_YESNO  Yes,No
MB_YESNOCANCEL  Yes,No,Cancel

MessageBox Icon IDs:
MB_ICONINFORMATION Informational icon
MB_ICONQUESTION  Question mark icon
MB_ICONSTOP  Stop sign icon
MB_ICONEXCLAMATION Exclamation mark icion

MessageBox return value IDs:
IDABORT  Abort
IDRETRY  Retry
IDIGNORE Ignore
IDYES  Yes
IDNO  No
IDOK  OK
IDCANCEL Cancel

Common Dialog Classes:
CFileDialog  File selection
CFontDialog  Font selection
CColorDialog  Color selection
CPageSetupDialog Page setup for printing
CPrintDialog  Printing
CFindReplaceDialog Find and Replace

定制CFileDialog:可以通过对于属性m_ofn的设置,对其进行定制:
typedef struct tagOFN{
DWORD  lStructSize;
HWND  hwndOwner;
HINSTANCE hInstance;
LPCTSTR  lpstrFilter;
LPTSTR  lpstrCustomFilter;
DWORD  nMaxCustFilter;
DWORD  nFIlterIndex;
LPTSTR  lpstrFile;
DWORD  nMaxFile;
LPTSTR  lpstrFileTitle;
DWORD  nMaxFileTitle;
LPCTSTR  lpstrInitialDir;
LPCTSTR  lpstrTitle;
DWORD  Flags;
WORD  nFileOffset;
WORD  nFileExtension;
LPCTSTR  lpstrDefExt;
DWORD  lCustData;
LPOFNHOOKPROC lpfnHook;
LPCTSTR  lpTemplateName;
}OPENFILENAME;

The Pen Class:
CDC dc(this);
CPen lPen(PS_SOLID,1,RGB(0,0,0));
dc.SelectObject(&lPen);

The Brush Class:
CBrush lPatterBrush(HS_BDIAGONAL,RGB(0,0,255));
使用bitmap作为背景
CBitmap m_bmpBitmap;
m_bmpBitmap.LoadBitmap(IDB_MYBITMAP);
CBrush lBitmapBursh(&m_bmpBitmap);

The Bitmap Class:
在程序中添加图片的方法:
1.使用资源文件的id添加
2.使用ActiveX方式显示.
3.使用api
HBITMAP hBitmap=(HBITMAP)::LoadImage(AfxGetInstanceHandle(),m_sFileName,IMAGE_BITMAP,0,0,LR_LOADROMFILE|LR_CREATEIBSECTION);
m_bmpBitmap.Attach(hBitmap);//m_bmpBitmap是CBitmap型

一个DC是CDC类的四个子类:CpaintDC,CClientDC,CWindowDC和CMetaFileDC之一的一个实例.




相关文章

相关软件