?? compare.h
字號:
#pragma once
#include "compare_first.h"
#include "compare_second.h"
#include "afxcmn.h"
// CCompare 對話框
class CCompare : public CDialog
{
DECLARE_DYNAMIC(CCompare)
public:
CCompare(CWnd* pParent = NULL); // 標準構造函數
virtual ~CCompare();
// 對話框數據
enum { IDD = IDD_COMPARE };
//控件資源
int m_heuristic; // 啟發函數系數
int m_maxstep; //有界深度優先函數界限
int m_begin, m_end; //開始結束狀態
void getHer(int her){m_heuristic = her;}
void getMaxstep(int maxstep){m_maxstep = maxstep;}
void getStatus(int begin, int end){m_begin = begin, m_end = end;}
CCompare_first comp1;
CCompare_second comp2;
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
DECLARE_MESSAGE_MAP()
public:
afx_msg void OnBnClickedCompSearch();
CTabCtrl m_tabctrl;
virtual BOOL OnInitDialog();
afx_msg void OnTcnSelchangeTab1(NMHDR *pNMHDR, LRESULT *pResult);
};
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -