📄 showresultview.h
字号:
////////////////////////////////////////////////////////////////////////////////////
// 左半边窗口的类,用来安放显示结果的列表
// 我们的算法程序也将放在这个类的中
////////////////////////////////////////////////////////////////////////////////////
#if !defined(AFX_SHOWRESULTVIEW_H__F30E9F1B_D935_4D7E_8B5F_B2512AB4E42C__INCLUDED_)
#define AFX_SHOWRESULTVIEW_H__F30E9F1B_D935_4D7E_8B5F_B2512AB4E42C__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// ShowResultView.h : header file
//
/////////////////////////////////////////////////////////////////////////////
// CShowResultView form view
#ifndef __AFXEXT_H__
#include <afxext.h>
#endif
#include "PropertyList.h"
class CShowResultView : public CFormView
{
protected:
CShowResultView(); // protected constructor used by dynamic creation
DECLARE_DYNCREATE(CShowResultView)
// Form Data
public:
//{{AFX_DATA(CShowResultView)
enum { IDD = IDD_ShowResult_VIEW };
CPropertyList m_ShowResult_List;
//}}AFX_DATA
// Attributes
public:
// 属性栏变量定义
CPropertyItem *propItem1,*propItem2,*propItem3,*propItem4,*propItem5;
CPropertyItem *propItem6,*propItem7,*propItem8,*propItem9,*propItem10;
CPropertyItem *propItem11,*propItem12,*propItem13,*propItem14;
// Operations
public:
void OnInitializeParameterOver();
void OnMakeData();
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CShowResultView)
public:
virtual void OnInitialUpdate();
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
virtual void OnDraw(CDC* pDC);
//}}AFX_VIRTUAL
// Implementation
protected:
virtual ~CShowResultView();
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
// Generated message map functions
//{{AFX_MSG(CShowResultView)
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_SHOWRESULTVIEW_H__F30E9F1B_D935_4D7E_8B5F_B2512AB4E42C__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -