wzdtoolbar.h

来自「一个多线程的网络数据采集系统(客户端)」· C头文件 代码 · 共 41 行

H
41
字号
#pragma once


// CWzdToolBar

class CWzdToolBar : public CToolBar
{
	DECLARE_DYNAMIC(CWzdToolBar)

public:
	CWzdToolBar();
	virtual ~CWzdToolBar();

	BOOL LoadToolBarEx(UINT id);
	CString GetXSelection(){ return m_sXSelection; }
	void SetXSelection(CString str);
	CString GetYSelection(){ return m_sYSelection; }
	void SetYSelection(CString str);

protected:
	//{{AFX_MSG(CWzdToolBar)
	afx_msg void OnDropdownXCombo();
	afx_msg void OnCloseupXCombo();
	afx_msg void OnEditChangeXCombo();
	afx_msg void OnDropdownYCombo();
	afx_msg void OnCloseupYCombo();
	afx_msg void OnEditChangeYCombo();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
private:    
//	static double m_dUnitsPerXCylce[14];
//	static double m_dUnitsPerYCylce[10];
	CComboBox m_ctrlXScaleCombo;
	CComboBox m_ctrlYScaleCombo;
	CString m_sXSelection;
	CString m_sYSelection;
protected:
};


⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?