www.pudn.com > MiniFox.rar > BrowseDirDialog.h


// BrowseDirDialog.h: interface for the CBrowseDirDialog class. 
// 
////////////////////////////////////////////////////////////////////// 
 
#if !defined(AFX_BROWSEDIRDIALOG_H__C408102E_76BD_4D24_953B_02885D90E5FE__INCLUDED_) 
#define AFX_BROWSEDIRDIALOG_H__C408102E_76BD_4D24_953B_02885D90E5FE__INCLUDED_ 
 
#if _MSC_VER > 1000 
#pragma once 
#endif // _MSC_VER > 1000 
 
class CBrowseDirDialog   
{ 
public: 
	CBrowseDirDialog(); 
	virtual ~CBrowseDirDialog(); 
public: 
	int DoBrowse();  
public: 
	CString m_Path; //存放返回的路径信息  
	CString m_InitDir; //初始显示的路径名,默认为桌面  
	CString m_SelDir; //打开对话框后,默认选中的目录名,缺省为根目录  
	CString m_Title; //设置对话框中浏览信息的标题,默认为"打开"  
	int m_ImageIndex;  
 
}; 
 
#endif // !defined(AFX_BROWSEDIRDIALOG_H__C408102E_76BD_4D24_953B_02885D90E5FE__INCLUDED_)