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

📄 flowchartlinkpropertiesdialog.cpp

📁 CFlowchartEditor is an extension of CDiagramEditor. CDiagramEditor is a vector editor, with a CWnd-d
💻 CPP
字号:
/* ==========================================================================
	CFlowchartLinkPropertiesDialog

	Author :		Johan Rosengren, Abstrakt Mekanik AB

	Date :			2004-04-29

	Purpose :		CFlowchartLinkPropertiesDialog is a CDialog-derived 
					class used to display the dialog when link-titles are 
					edited.	

	Description :	Class wizard-generated.

	Usage :			Called internally when "Edit link title" is selected 
					from the editor popup-menu.

   ========================================================================*/

#include "stdafx.h"
#include "FlowchartLinkPropertiesDialog.h"

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

/////////////////////////////////////////////////////////////////////////////
// CFlowchartLinkPropertiesDialog dialog


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


void CFlowchartLinkPropertiesDialog::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CFlowchartLinkPropertiesDialog)
	DDX_Text(pDX, IDC_FLOWCHART_EDIT_LINK_TITLE, m_linkTitle);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(CFlowchartLinkPropertiesDialog, CDialog)
	//{{AFX_MSG_MAP(CFlowchartLinkPropertiesDialog)
		// NOTE: the ClassWizard will add message map macros here
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CFlowchartLinkPropertiesDialog message handlers

⌨️ 快捷键说明

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