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

📄 dialog7.cpp

📁 密钥的管理中心
💻 CPP
字号:
// 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -