ttl_inverterdlg.h

来自「数字电路学习。TTL方向器的具体工作过程。各器件导通截至情况和电路各点电压变化。」· C头文件 代码 · 共 54 行

H
54
字号
// ttl_inverterDlg.h : 头文件
//

#pragma once


// Cttl_inverterDlg 对话框
class Cttl_inverterDlg : public CDialog
{
// 构造
public:
	Cttl_inverterDlg(CWnd* pParent = NULL);	// 标准构造函数

// 对话框数据
	enum { IDD = IDD_TTL_INVERTER_DIALOG };

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


// 实现
protected:
	HICON m_hIcon;

	// 生成的消息映射函数
	virtual BOOL OnInitDialog();
	afx_msg void OnTimer( UINT ); 
	afx_msg void OnPaint();
	afx_msg HCURSOR OnQueryDragIcon();
	DECLARE_MESSAGE_MAP()
public:
	afx_msg void OnBnClickedButton3();
	afx_msg void OnBnClickedButton4();
	// 显示哪一张图
	int show_which;
	int step;
	int dis_step;//阶段步骤可能包含几个显示步骤
	bool byhand;
	int cnt;

	UINT_PTR timer_ID;
	bool timer_on;

	void ShowOneStep();
	void ShowOneStep2();

	afx_msg void OnBnClickedButton1();
	afx_msg void OnBnClickedButton2();
	afx_msg void OnBnClickedButton6();
	afx_msg void OnBnClickedButton5();
	afx_msg void OnBnClickedButton7();
	afx_msg void OnBnClickedButton8();
};

⌨️ 快捷键说明

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