?? aboutdlg.h
字號:
//-----------------------------------------------------------------------------
// (c) 2002 by Basler Vision Technologies
// Section: Vision Components
// Project: BCAM
// $Header: aboutdlg.h, 3, 29.01.2003 16:11:16, Happe, A.$
//-----------------------------------------------------------------------------
/**
\file aboutdlg.h
\brief interface of the CAboutDlg class
*/
/////////////////////////////////////////////////////////////////////////////
#if !defined(AFX_ABOUTDLG_H__3C7D45BF_7F04_43F6_ABB8_AFA0938A927D__INCLUDED_)
#define AFX_ABOUTDLG_H__3C7D45BF_7F04_43F6_ABB8_AFA0938A927D__INCLUDED_
#include "BcamVersion.h"
class CAboutDlg : public CDialogImpl<CAboutDlg>
{
public:
enum { IDD = IDD_ABOUTBOX };
BEGIN_MSG_MAP(CAboutDlg)
MESSAGE_HANDLER(WM_INITDIALOG, OnInitDialog)
COMMAND_ID_HANDLER(IDOK, OnCloseCmd)
COMMAND_ID_HANDLER(IDCANCEL, OnCloseCmd)
END_MSG_MAP()
LRESULT OnInitDialog(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& /*bHandled*/)
{
CenterWindow(GetParent());
::SetWindowText( GetDlgItem(IDC_STATICVERSION),
BCAM_VERSIONSTRING_MAJOR "." BCAM_VERSIONSTRING_MINOR "." BCAM_VERSIONSTRING_BUILD BCAM_DEBUGSTRING); return TRUE;
}
LRESULT OnCloseCmd(WORD /*wNotifyCode*/, WORD wID, HWND /*hWndCtl*/, BOOL& /*bHandled*/)
{
EndDialog(wID);
return 0;
}
};
#endif // !defined(AFX_ABOUTDLG_H__3C7D45BF_7F04_43F6_ABB8_AFA0938A927D__INCLUDED_)
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -