twain3.0/huagao/CAboutDlg.cpp

47 lines
772 B
C++
Raw Normal View History

// CAboutDlg.cpp: 实现文件
//
#include "stdafx.h"
#include "CAboutDlg.h"
#include "afxdialogex.h"
#include "resource.h"
// CAboutDlg 对话框
IMPLEMENT_DYNAMIC(CAboutDlg, CDialogEx)
CAboutDlg::CAboutDlg(CWnd* pParent /*=nullptr*/)
: CDialogEx(IDD_ABOUT, pParent)
{
}
CAboutDlg::~CAboutDlg()
{
}
void CAboutDlg::DoDataExchange(CDataExchange* pDX)
{
CDialogEx::DoDataExchange(pDX);
}
BEGIN_MESSAGE_MAP(CAboutDlg, CDialogEx)
END_MESSAGE_MAP()
// CAboutDlg 消息处理程序
BOOL CAboutDlg::OnInitDialog()
{
CDialogEx::OnInitDialog();
// TODO: 在此添加额外的初始化
SetDlgItemText(IDC_LBDERIVERVERSON, HG_VERSION_INFO);
return TRUE; // return TRUE unless you set the focus to a control
// 异常: OCX 属性页应返回 FALSE
}