|
// LCDDisplayDlg.h: 头文件
|
//
|
|
#pragma once
|
#include "LCDDisplay1.h"
|
|
// CLCDDisplayTestDlg 对话框
|
class CLCDDisplayTestDlg : public CDialogEx
|
{
|
// 构造
|
public:
|
CLCDDisplayTestDlg(CWnd* pParent = nullptr); // 标准构造函数
|
|
// 对话框数据
|
#ifdef AFX_DESIGN_TIME
|
enum { IDD = IDD_LCDDISPLAY_DIALOG };
|
#endif
|
|
protected:
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
|
|
|
// 实现
|
protected:
|
HICON m_hIcon;
|
|
// 生成的消息映射函数
|
virtual BOOL OnInitDialog();
|
afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
|
afx_msg void OnPaint();
|
afx_msg HCURSOR OnQueryDragIcon();
|
DECLARE_MESSAGE_MAP()
|
public:
|
void DbgLog(CString s1);
|
LCDDisplay1 m_lcd_display;
|
afx_msg void OnBnClickedButton1();
|
afx_msg void OnBnClickedButton2();
|
afx_msg void OnBnClickedButton3();
|
afx_msg void OnBnClickedButton4();
|
afx_msg void OnBnClickedButton5();
|
afx_msg void OnBnClickedButton6();
|
afx_msg void OnBnClickedButtonConvert();
|
afx_msg void OnBnClickedButtonClear();
|
afx_msg void OnTimer(UINT_PTR nIDEvent);
|
int DelayInit();
|
int UpdateDisplay();
|
afx_msg void OnBnClickedButton7();
|
afx_msg void OnBnClickedButton8();
|
CMFCColorButton m_color_button1;
|
CMFCColorButton m_color_button2;
|
};
|