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

📄 dialogi.cpp

📁 BFS、DFS、有向图、无向图中的各种算法的实现
💻 CPP
字号:
// DialogI.cpp : implementation file
//

#include "stdafx.h"
#include "graph.h"
#include "DialogI.h"

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

/////////////////////////////////////////////////////////////////////////////
// CDialogI dialog


CDialogI::CDialogI(CWnd* pParent /*=NULL*/)
	: CDialog(CDialogI::IDD, pParent)
{
	//{{AFX_DATA_INIT(CDialogI)
	m_strname = _T("");
	//}}AFX_DATA_INIT
}


void CDialogI::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CDialogI)
	DDX_Text(pDX, IDC_EDIT1, m_strname);
	//}}AFX_DATA_MAP
}


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

/////////////////////////////////////////////////////////////////////////////
// CDialogI message handlers

void CDialogI::OnOK() 
{
	CDialog::OnOK();
	
}

⌨️ 快捷键说明

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