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

📄 taskpane.h

📁 用VC++开发了一个数控加工的三维仿真程序
💻 H
字号:
//*******************************************************************************
// COPYRIGHT NOTES
// ---------------
// This is a sample for BCGControlBar Library Professional Edition
// Copyright (C) 1998-2007 BCGSoft Ltd.
// All rights reserved.
//
// This source code can be used, distributed or modified
// only under terms and conditions 
// of the accompanying license agreement.
//*******************************************************************************
//
// TaskPane.h : interface of the CTaskPane class
//
/////////////////////////////////////////////////////////////////////////////

#pragma once

class CTaskPane : public CBCGPTasksPane
{
//	friend class CTasksPaneView;

// Construction
public:
	CTaskPane();
	
// Attributes

protected:
	int	m_nDocumentsGroup;

	CFont				m_Font;
	CToolBar			m_wndToolbar_ServerFile;
public:
	CBCGPGridCtrl		m_wndGridCtrl_ServerFile;
	CBCGPGridCtrl 		m_wndGridCtrl_SynSimulaServer_ClientList;

// Operations
public:
	void UpdateMRUFilesList ();
	void UpdateToolbar ();

// Overrides
public:
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CTaskPane)
	//}}AFX_VIRTUAL

protected:
	BOOL CreateEditControl();

// Implementation
public:
	virtual ~CTaskPane();

	// Generated message map functions
protected:
	//{{AFX_MSG(CTaskPane)
	afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
	afx_msg LRESULT OnDBClickGridCtrlFileServerFile(WPARAM w, LPARAM l);

	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

/////////////////////////////////////////////////////////////////////////////

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

⌨️ 快捷键说明

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