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

📄 vtkapp.cpp

📁 VTK入门样例(种类齐全)
💻 CPP
字号:
#include "stdafx.h"
#include "vtkApp.h"
#include "vtkDlg.h"


BEGIN_MESSAGE_MAP(CVTKApp, CWinApp)

END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CVTKGUIApp construction

CVTKApp::CVTKApp()
{
	// TODO: add construction code here,
	// Place all significant initialization in InitInstance
}

/////////////////////////////////////////////////////////////////////////////
// The one and only CVTKGUIApp object

CVTKApp theApp;

BOOL CVTKApp::InitInstance()
{
	
	
	CvtkDlg dlg;
	m_pMainWnd = &dlg;
	int nResponse = dlg.DoModal();
	if (nResponse == IDOK)
	{
		// TODO: Place code here to handle when the dialog is
		//  dismissed with OK
	}
	else if (nResponse == IDCANCEL)
	{
		// TODO: Place code here to handle when the dialog is
		//  dismissed with Cancel
	}
	
	return FALSE;
}

⌨️ 快捷键说明

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