cyber3k

Plan1

Jan 13th, 2021 (edited)
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 2.39 KB | None | 0 0
  1. #pragma comment(linker,"\"/manifestdependency:type='win32' \
  2. name='Microsoft.Windows.Common-Controls' version='6.0.0.0' \
  3. processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'\"")
  4.  
  5. #include <windows.h>
  6. #include <Winuser.h>
  7.  
  8.  
  9.  
  10. int CALLBACK wWinMain(HINSTANCE hInstance, HINSTANCE, PWSTR szCmdLine, int nCmdShow)
  11. {
  12.     MSG msg{};
  13.     HWND hwnd{};
  14.     WNDCLASSEX wc{ sizeof(WNDCLASSEX) };
  15.     HBITMAP hBM;
  16.  
  17.     wc.cbClsExtra = 0;
  18.     wc.cbWndExtra = 0;
  19.     wc.hbrBackground = reinterpret_cast<HBRUSH>(GetStockObject(WHITE_BRUSH));
  20.     wc.hCursor = LoadCursor(nullptr, IDC_ARROW);
  21.     wc.hIcon = LoadIcon(nullptr, IDI_APPLICATION);
  22.     wc.hIconSm = LoadIcon(nullptr, IDI_APPLICATION);
  23.     wc.hInstance = hInstance;
  24.     wc.lpfnWndProc = [](HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)->LRESULT
  25.     {
  26.         switch (uMsg)
  27.         {
  28.  
  29.             case WM_CREATE:
  30.             {  
  31.                 //окно, которое необходимо окрасить
  32.                 HWND hButton = CreateWindow(
  33.                     L"BUTTON",
  34.                      nullptr,
  35.                     WS_CHILD | WS_VISIBLE | BS_PUSHBUTTON | SS_BITMAP,
  36.                     20, 20, 100, 100, hWnd, reinterpret_cast<HMENU>(01), nullptr, nullptr
  37.                 );
  38.                 //инициализация окраски
  39.                 HBITMAP hBM = (HBITMAP)LoadImage(nullptr, MAKEINTRESOURCE(L"C://1111.bmp"), IMAGE_BITMAP, 0, 0, 0);
  40.                 SendMessage(hButton, BM_SETIMAGE, IMAGE_BITMAP, (LPARAM)hBM);
  41.  
  42.  
  43.                 HWND hButton1 = CreateWindow(
  44.                     L"BUTTON",
  45.                     nullptr,
  46.                     WS_CHILD | WS_VISIBLE | BS_PUSHBUTTON,
  47.                     140, 20, 100, 100, hWnd, reinterpret_cast<HMENU>(02), nullptr, nullptr
  48.                 );
  49.                
  50.             }
  51.             return 0;
  52.  
  53.             case WM_COMMAND:
  54.             {
  55.                 switch (LOWORD(wParam))
  56.                 {
  57.                     case 01:
  58.                     {
  59.                    
  60.                     }
  61.                     break;
  62.                 }
  63.             }
  64.             return 0;
  65.  
  66.             case WM_DESTROY:
  67.             {
  68.                 PostQuitMessage(EXIT_SUCCESS);
  69.             }
  70.             return 0;
  71.         }
  72.         return DefWindowProc(hWnd, uMsg, wParam, lParam);
  73.     };
  74.     wc.lpszClassName = L"MyAppClass";
  75.     wc.lpszMenuName = nullptr;
  76.     wc.style = CS_VREDRAW | CS_HREDRAW;
  77.  
  78.     if (!RegisterClassEx(&wc))
  79.         return EXIT_FAILURE;
  80.  
  81.     if (hwnd = CreateWindow(wc.lpszClassName, L"XXv0.1", WS_OVERLAPPEDWINDOW, 0, 0, 1366, 768, nullptr, nullptr, wc.hInstance, nullptr); hwnd == INVALID_HANDLE_VALUE)
  82.         return EXIT_FAILURE;
  83.  
  84.     ShowWindow(hwnd, nCmdShow);
  85.     UpdateWindow(hwnd);
  86.  
  87.     while (GetMessage(&msg, nullptr, 0, 0))
  88.     {
  89.         TranslateMessage(&msg);
  90.         DispatchMessage(&msg);
  91.  
  92.     }
  93.  
  94.     return static_cast<int>(msg.wParam);
  95.  
  96. }
  97.  
  98.  
  99.  
Add Comment
Please, Sign In to add comment