程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> .NET實例教程 >> Win32sdk下加載位圖到static控件

Win32sdk下加載位圖到static控件

編輯:.NET實例教程
//Main.cpp
#include "Head.h"

/*
 * deal the message of the programm
 */
LRESULT CALLBACK WndProc(HWND hwnd,UINT message
                         ,WPARAM wParam,LPARAM IParam)
{
    switch(message)
    {
    case WM_DESTROY:
        PostQuitMessage(0);
    default:
        return DefWindowProc(hwnd,message,wParam,IParam);
    }
    return(0);
}

/*
 *init WNDCLASS of the main window and regedit it
 */
BOOL InitWindowsClass()
{
    WNDCLASS wndclass;
    wndclass.style=0
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved