⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dialognaptr.cpp

📁 再贡献一份基于osip 协议栈的用户代理
💻 CPP
字号:
// 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -