?? diagrampropertydlg.h
字號:
#ifndef _DIAGRAMPROPERTYDLG_H_
#define _DIAGRAMPROPERTYDLG_H_
#include "DiagramEntity.h"
class CDiagramEntity;
class CDiagramPropertyDlg : public CDialog
{
public:
CDiagramPropertyDlg( UINT res, CWnd* parent );
BOOL Create( UINT nIDTemplate, CWnd* pParentWnd );
void SetEntity( CDiagramEntity* entity );
CDiagramEntity* GetEntity() const;
virtual CWnd* GetRedrawWnd();
virtual void SetRedrawWnd( CWnd* redrawWnd );
virtual void Redraw();
virtual void SetValues() = 0;
private:
CDiagramEntity* m_entity;
CWnd* m_redrawWnd;
};
#endif // _DIAGRAMPROPERTYDLG_H_
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -