dialog7.cpp

来自「密钥的管理中心」· C++ 代码 · 共 58 行

CPP
58
字号
// Dialog7.cpp : implementation file
//

#include "stdafx.h"
#include "bishe.h"
#include "Dialog7.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CDialog7 dialog


CDialog7::CDialog7(CWnd* pParent /*=NULL*/)
	: CDialog(CDialog7::IDD, pParent)
{
	//{{AFX_DATA_INIT(CDialog7)
		// NOTE: the ClassWizard will add member initialization here
	//}}AFX_DATA_INIT
}


void CDialog7::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CDialog7)
	DDX_Control(pDX, IDC_status_LIST2, m_status);
	DDX_Control(pDX, IDC_ROAD_LIST1, m_road);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(CDialog7, CDialog)
	//{{AFX_MSG_MAP(CDialog7)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CDialog7 message handlers

BOOL CDialog7::OnInitDialog() 
{
	CDialog::OnInitDialog();
	
	// TODO: Add extra initialization here
	m_road.AddString("KDC");
	
	m_status.AddString("由可信的证书中心颁发");
    
	
	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 + -
显示快捷键?