// BandwidthDlg.cpp : ±¸Çö ÆÄÀÏÀÔ´Ï´Ù. // #include "stdafx.h" #include "ConsoleApp.h" #include "BandwidthDlg.h" #include ".\bandwidthdlg.h" // CBandwidthDlg ´ëÈ­ »óÀÚÀÔ´Ï´Ù. IMPLEMENT_DYNAMIC(CBandwidthDlg, CDialog) CBandwidthDlg::CBandwidthDlg(CWnd* pParent /*=NULL*/) : CDialog(CBandwidthDlg::IDD, pParent) , m_sPath(_T("")) , m_nLevel(0) { } CBandwidthDlg::~CBandwidthDlg() { } void CBandwidthDlg::DoDataExchange(CDataExchange* pDX) { CDialog::DoDataExchange(pDX); DDX_Text(pDX, IDC_EDT_PATH, m_sPath); DDX_Control(pDX, IDC_CBO_LEVEL, m_cboLevel); } BEGIN_MESSAGE_MAP(CBandwidthDlg, CDialog) END_MESSAGE_MAP() // CBandwidthDlg ¸Þ½ÃÁö 󸮱âÀÔ´Ï´Ù. BOOL CBandwidthDlg::OnInitDialog() { CDialog::OnInitDialog(); m_cboLevel.SetCurSel(m_nLevel); return TRUE; // return TRUE unless you set the focus to a control // ¿¹¿Ü: OCX ¼Ó¼º ÆäÀÌÁö´Â FALSE¸¦ ¹ÝÈ¯ÇØ¾ß ÇÕ´Ï´Ù. }