Win32 App没有在窗口中运行但在控制台中运行

时间:2014-07-23 10:26:42

标签: c++ winapi console

我已经通过铂金在c ++中创建了一个Windows应用程序。 当我运行这个应用程序时,它将在命令提示符下运行 现在,我想从Windows运行它,所以我管理它在Windows中运行 但是,问题是我不能同时在命令提示符和窗口中运行应用程序。 它只允许我在Windows或命令提示符(不是两者)中运行 任何人都可以引导我走上正确的道路。

1 个答案:

答案 0 :(得分:0)

如果您同时需要控制台和窗口,则可以将应用程序作为控制台启动,然后使用Windows API创建一个窗口。

此处示例:

#include <iostream>
#include <windows.h>

long __stdcall WindowProcedure( HWND window, unsigned int msg, WPARAM wp, LPARAM lp )
{
  switch(msg)
  {
  case WM_DESTROY:
    std::cout << "\ndestroying window\n" ;
    PostQuitMessage(0) ;
    return 0L ;
  case WM_LBUTTONDOWN:
    std::cout << "\nmouse left button down at (" << LOWORD(lp)
      << ',' << HIWORD(lp) << ")\n" ;
    // fall thru
  default:
    std::cout << '.' ;
    return DefWindowProc( window, msg, wp, lp ) ;
  }
}

int main()
{
  std::cout << "hello world!\n" ;
  const char* const myclass = "myclass" ;
  WNDCLASSEX wndclass = { sizeof(WNDCLASSEX), CS_DBLCLKS, (WNDPROC)WindowProcedure,
    0, 0, GetModuleHandle(0), LoadIcon(0,IDI_APPLICATION),
    LoadCursor(0,IDC_ARROW), HBRUSH(COLOR_WINDOW+1),
    0, (LPCWSTR)myclass, LoadIcon(0,IDI_APPLICATION) } ;
  if( RegisterClassEx(&wndclass) )
  {
    HWND window = CreateWindowEx( 0, (LPCWSTR)myclass, (LPCWSTR)"title",
      WS_OVERLAPPEDWINDOW, CW_USEDEFAULT, CW_USEDEFAULT,
      CW_USEDEFAULT, CW_USEDEFAULT, 0, 0, GetModuleHandle(0), 0 ) ;
    if(window)
    {
      ShowWindow( window, SW_SHOWDEFAULT ) ;
      MSG msg ;
      while( GetMessage( &msg, 0, 0, 0 ) ) DispatchMessage(&msg) ;
    }
  }
}

取自this link(并取自其他地方)