⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 wzdtoolbar.h

📁 一个多线程的网络数据采集系统(客户端)
💻 H
字号:
#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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -