📄 pendialog.cpp
字号:
// PenDialog.cpp : implementation file
//
#include "stdafx.h"
#include "Sketcher.h"
#include "PenDialog.h"
// CPenDialog dialog
IMPLEMENT_DYNAMIC(CPenDialog, CDialog)
CPenDialog::CPenDialog(CWnd* pParent /*=NULL*/)
: CDialog(CPenDialog::IDD, pParent)
, m_PenWidth(0)
{
}
CPenDialog::~CPenDialog()
{
}
void CPenDialog::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
DDX_LBIndex(pDX, IDC_PENWIDTH, m_PenWidth);
}
BEGIN_MESSAGE_MAP(CPenDialog, CDialog)
END_MESSAGE_MAP()
// CPenDialog message handlers
BOOL CPenDialog::OnInitDialog()
{
CDialog::OnInitDialog();
CListBox* pLBox = (CListBox*)GetDlgItem(IDC_PENWIDTH); // Initialize aBox
pLBox->AddString(_T("Pen Width 0")); // Add the strings to the box
pLBox->AddString(_T("Pen Width 1"));
pLBox->AddString(_T("Pen Width 2"));
pLBox->AddString(_T("Pen Width 3"));
pLBox->AddString(_T("Pen Width 4"));
pLBox->AddString(_T("Pen Width 5"));
pLBox->SetCurSel(m_PenWidth); // Highlight the current pen width
return TRUE; // return TRUE unless you set the focus to a control
// EXCEPTION: OCX Property Pages should return FALSE
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -