📄 cinfodlg.h
字号:
/*
* Copyright (c) 2001 - 2003 Satish Kumar J (vsat_in@yahoo.com)
*
* Project: Win2fs
*
* Module Name: \GUI\MainApp\CInfoDlg.h
*
* Abstract: Header for the Info dialog class.
*
* Notes: None
*
* Revision History:
*
* Date Version Author Change Log
* ------------------------------------------------------------------------
*
* 03-DEC-05 0.0.1 Satish Kumar J Initial Version
*/
#ifndef __CINFODLG_H
#define __CINFODLG_H
/////////////////////////////////////////////////////////////////////////////
// Includes.
#include "StdAfx.h"
#include "Utils.h"
/////////////////////////////////////////////////////////////////////////////
// Global declarations.
class CInfoDlg : public CDialog
{
public:
CInfoDlg (PARTITION_INFO*);
virtual ~CInfoDlg();
afx_msg BOOL OnInitDialog ();
protected:
VOID PopulateInfo();
CListCtrl m_List;
PARTITION_INFO* m_pPartition;
};
/////////////////////////////////////////////////////////////////////////////
#endif // __CINFODLG_H
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -