📄 dirdialog.h
字号:
// DirDialog.h: interface for the CDirDialog class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_DIRDIALOG_H__0094D4AB_B4F1_4295_8EF0_9702C0256304__INCLUDED_)
#define AFX_DIRDIALOG_H__0094D4AB_B4F1_4295_8EF0_9702C0256304__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#if !defined BIF_NEWDIALOGSTYLE
#define BIF_NEWDIALOGSTYLE 0x0040
#endif
class CDirDialog
{
public:
CDirDialog();
virtual ~CDirDialog();
void SetTiTle(CString);
void SetInitPath(CString);
int DoBrowse(CWnd *pwndParent=NULL);
CString GetPath();
CString m_strPath;
CString m_strInitDir;
CString m_strSelDir;
CString m_strWindowTitle;
int m_iImageIndex;
};
#endif // !defined(AFX_DIRDIALOG_H__0094D4AB_B4F1_4295_8EF0_9702C0256304__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -