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

📄 waitprogressdlg.h

📁 WinCe下实现多线程
💻 H
字号:
// WaitProgressDlg.h : header file
//

#if !defined(AFX_WAITPROGRESSDLG_H__C3BBEF87_8F7C_46B5_A800_44A022DD01CF__INCLUDED_)
#define AFX_WAITPROGRESSDLG_H__C3BBEF87_8F7C_46B5_A800_44A022DD01CF__INCLUDED_

#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000

#include "ColourPicker.h"
#include "KCBusyProgressCtrl.h"

/////////////////////////////////////////////////////////////////////////////
// CWaitProgressDlg dialog

class CWaitProgressDlg : public CDialog
{
// Construction
public:
	CWaitProgressDlg(CWnd* pParent = NULL);	// standard constructor

// Dialog Data
	//{{AFX_DATA(CWaitProgressDlg)
	enum { IDD = IDD_WAITPROGRESS_DIALOG };
	CKCBusyProgressCtrl	m_ctlBusy;
	CColourPicker	m_btnColBFaceHi;
	CColourPicker	m_btnColBEdgeHi;
	CColourPicker	m_btnColBFace;
	CColourPicker	m_btnColBEdge;
	CColourPicker	m_btnColBkg;
	int		m_nSpeed;
	int		m_nIBPadding;
	int		m_nNumBlocks;
	int		m_nMode;
	int		m_nBusyType;
	int		m_nBusyFill;
	int		m_nGranularity;
	//}}AFX_DATA

	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CWaitProgressDlg)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);	// DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:
	HICON m_hIcon;

	// Generated message map functions
	//{{AFX_MSG(CWaitProgressDlg)
	virtual BOOL OnInitDialog();
	afx_msg void OnRadioBusyfill();
	afx_msg void OnRadioBusytype();
	afx_msg void OnChangeEditSpeed();
	afx_msg void OnChangeEditIbpadding();
	afx_msg void OnChangeEditNumblocks();
	afx_msg void OnChangeEditGranularity();
	afx_msg void OnRadioMode();
	afx_msg void OnRadioModeProgress();
	afx_msg void OnButtonStart();
	afx_msg void OnDestroy();
	afx_msg void OnTimer(UINT nIDEvent);
	//}}AFX_MSG
	afx_msg LONG OnSelEndOK(UINT lParam, LONG wParam);
	DECLARE_MESSAGE_MAP()
};

//{{AFX_INSERT_LOCATION}}
// Microsoft eMbedded Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_WAITPROGRESSDLG_H__C3BBEF87_8F7C_46B5_A800_44A022DD01CF__INCLUDED_)

⌨️ 快捷键说明

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