dialognaptr.cpp

来自「再贡献一份基于osip 协议栈的用户代理」· C++ 代码 · 共 45 行

CPP
45
字号
// DialogNaptr.cpp : implementation file
//

#include "stdafx.h"
#include "RtcOutgoing.h"
#include "DialogNaptr.h"
#include ".\dialognaptr.h"

#include "RtcOutgoingDlg.h"

// CDialogNaptr dialog

IMPLEMENT_DYNAMIC(CDialogNaptr, CDialog)
CDialogNaptr::CDialogNaptr(CWnd* pParent /*=NULL*/)
	: CDialog(CDialogNaptr::IDD, pParent)
{
}

CDialogNaptr::~CDialogNaptr()
{
}

void CDialogNaptr::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	DDX_Control(pDX, IDC_EDIT1, m_EditText);
}


BEGIN_MESSAGE_MAP(CDialogNaptr, CDialog)
	ON_BN_CLICKED(IDOK, OnBnClickedOk)
END_MESSAGE_MAP()


// CDialogNaptr message handlers

void CDialogNaptr::OnBnClickedOk()
{
	// TODO: Add your control notification handler code here

	this->parentDlg->dlgNaptr = NULL;

	OnOK(); // default handler, closes window
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?