pendialog.cpp

来自「Visual C++ 2005的源代码」· C++ 代码 · 共 55 行

CPP
55
字号
// 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 + =
减小字号Ctrl + -
显示快捷键?