loadmapcontrol.cpp

来自「地理信息系统ArcEngine二次开发:实现读取地图文档功能。」· C++ 代码 · 共 42 行

CPP
42
字号
// LoadMapControl.cpp : Implementation of WinMain


#include "stdafx.h"
#include "resource.h"
#include "LoadMap.h"

// This is not a COM module but we need this to ensure ATL will pick up the resource instance
CComModule _Module;


extern "C" int WINAPI _tWinMain(HINSTANCE hInstance,
                     HINSTANCE hPrevInstance,
                     LPSTR     lpCmdLine,
                     int       nCmdShow)
{
  ::CoInitialize(NULL);
  _Module.Init(NULL, hInstance);

  // make sure all COM pointers are released (inside CLoadMap) before CoUninitialize is called
  {
    CLoadMap dlg;      //create an instance of the class
    dlg.Create(NULL);  //create the main window, the NULL, means it will be the main window
    dlg.ShowWindow(SW_SHOWNORMAL); //show it

    // Main message loop:
    MSG msg;
    while (GetMessage(&msg, NULL, 0, 0)) 
    {
      TranslateMessage(&msg);
      DispatchMessage(&msg);
    }
  }

  ::CoUninitialize();

  return 0;

} 


⌨️ 快捷键说明

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