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

📄 cycleslider.h

📁 The application wizard has created this SoccerDoctor application for you. This application not onl
💻 H
字号:
#pragma once
#include "afxcmn.h"
#include "LogPlayer.h"

// CCycleSlider dialog

class CCycleSlider : public CDialog
{
	DECLARE_DYNAMIC(CCycleSlider)
	short	m_nMin;
	short	m_nMax;
	short	m_nPos;
	CLogPlayer* m_pLogPlayer;
public:
	CCycleSlider(CWnd* pParent = NULL);   // standard constructor
	virtual ~CCycleSlider();
	CCycleSlider(CLogPlayer* pLogPlayer,short nMin,short nMax,short nPos);
	UINT GetPos();
// Dialog Data
	enum { IDD = IDD_CYCLE_SLIDER };

protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support

	DECLARE_MESSAGE_MAP()
public:
	virtual BOOL OnInitDialog();
	afx_msg void OnHScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar);
private:
	CSliderCtrl m_cSlider;
	CString m_StartNum;
	CString m_StopNum;
	CString m_SliderPos;
};

⌨️ 快捷键说明

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