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

📄 taskdisplay.h

📁 一个自己编写的柔性制造的仿真软件,完全是自己编写的软件源码
💻 H
字号:
#if !defined(AFX_TASKDISPLAY_H__F6D01B9F_991C_43B8_845C_7F98CFE9A6E4__INCLUDED_)
#define AFX_TASKDISPLAY_H__F6D01B9F_991C_43B8_845C_7F98CFE9A6E4__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// TaskDisplay.h : header file
//

/////////////////////////////////////////////////////////////////////////////
// CTaskDisplay dialog

class CTaskDisplay : public CDialog
{
// Construction
public:
	CTaskDisplay(CWnd* pParent = NULL);   // standard constructor
	CView* pView;
	CTaskDisplay(CView *pParent);
	struct  task{
		int amount;
		int priority;
		int time;
		char working_procedure[30][10];
	};
	struct task plan_display[10];
	char ss[20];
	char ListText1[20];
	char ListText2[20];
	char ListText3[50];
// Dialog Data
	//{{AFX_DATA(CTaskDisplay)
	enum { IDD = IDD_TASK_DISPLAY };
	CListCtrl	m_list1;
	//}}AFX_DATA


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

// Implementation
protected:

	// Generated message map functions
	//{{AFX_MSG(CTaskDisplay)
	virtual BOOL OnInitDialog();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

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

#endif // !defined(AFX_TASKDISPLAY_H__F6D01B9F_991C_43B8_845C_7F98CFE9A6E4__INCLUDED_)

⌨️ 快捷键说明

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