📄 portdlg.cpp
字号:
// PortDlg.cpp : implementation file
//
#include "stdafx.h"
#include "WC.h"
#include "PortDlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CPortDlg dialog
CPortDlg::CPortDlg(CWnd* pParent /*=NULL*/)
: CDialog(CPortDlg::IDD, pParent)
{
//{{AFX_DATA_INIT(CPortDlg)
// NOTE: the ClassWizard will add member initialization here
//}}AFX_DATA_INIT
}
void CPortDlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CPortDlg)
// NOTE: the ClassWizard will add DDX and DDV calls here
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CPortDlg, CDialog)
//{{AFX_MSG_MAP(CPortDlg)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CPortDlg message handlers
BOOL CPortDlg::OnInitDialog()
{
CDialog::OnInitDialog();
// TODO: Add extra initialization here
//默认端口号为0
SetDlgItemText(IDC_PORT,"0");
//默认服务器为localhost
SetDlgItemText(IDC_ADDR,"localcast");
return TRUE; // return TRUE unless you set the focus to a control
// EXCEPTION: OCX Property Pages should return FALSE
}
void CPortDlg::OnOK()
{
// TODO: Add extra validation here
CString str;
GetDlgItemText(IDC_PORT,str);
GetDlgItemText(IDC_ADDR,m_Address);
GetDlgItemText(IDC_NAME,m_Name);
m_nPort=atoi(str);
CDialog::OnOK();
}
void CPortDlg::OnCancel()
{
// TODO: Add extra cleanup here
exit(0);
CDialog::OnCancel();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -