亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

蟲蟲首頁| 資源下載| 資源專輯| 精品軟件
登錄| 注冊

stdafx

  • 應(yīng)用程序:Example 項(xiàng)目概述 ======================================================================== 應(yīng)用程序向

    應(yīng)用程序:Example 項(xiàng)目概述 ======================================================================== 應(yīng)用程序向?qū)б褳槟鷦?chuàng)建了此 Example 應(yīng)用程序。 本文件概要介紹組成 Example 應(yīng)用程序的每個文件的內(nèi)容。 Example.vcproj 這是使用應(yīng)用程序向?qū)傻?VC++ 項(xiàng)目的主項(xiàng)目文件。 它包含生成該文件的 Visual C++ 的版本信息,以及有關(guān)使用應(yīng)用程序向?qū)нx擇的 平臺、配置和項(xiàng)目功能的信息。 Example.cpp 這是主應(yīng)用程序源文件。 包含用于顯示窗體的代碼。 Form1.h 包含窗體類的實(shí)現(xiàn)和 InitializeComponent() 函數(shù)。 AssemblyInfo.cpp 包含用于修改程序集元數(shù)據(jù)的自定義屬性。 ///////////////////////////////////////////////////////////////////////////// 其他標(biāo)準(zhǔn)文件: stdafx.h, stdafx.cpp 這些文件用于生成名為 Example.pch 的預(yù)編譯頭文件 和名為 stdafx.obj 的預(yù)編譯類型文件。

    標(biāo)簽: Example 應(yīng)用程序 項(xiàng)目

    上傳時間: 2017-07-23

    上傳用戶:dragonhaixm

  • c#簡單計算器

    // 學(xué)生管理.cpp : Defines the entry point for the application. // #include "stdafx.h" #include "resource.h" #define MAX_LOADSTRING 100 // Global Variables: HINSTANCE hInst; // current instance TCHAR szTitle[MAX_LOADSTRING]; // The title bar text TCHAR szWindowClass[MAX_LOADSTRING]; // The title bar text // Foward declarations of functions included in this code module: ATOM MyRegisterClass(HINSTANCE hInstance); BOOL InitInstance(HINSTANCE, int); LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM); LRESULT CALLBACK About(HWND, UINT, WPARAM, LPARAM); struct person {   char name[10];   int ID;   int cj_yw;   int cj_sx;   struct person* next;   struct person* pro; }per; int APIENTRY WinMain(HINSTANCE hInstance,                      HINSTANCE hPrevInstance,                      LPSTR     lpCmdLine,                      int       nCmdShow) {   // TODO: Place code here. MSG msg; HACCEL hAccelTable; // Initialize global strings LoadString(hInstance, IDS_APP_TITLE, szTitle, MAX_LOADSTRING); LoadString(hInstance, IDC_MY, szWindowClass, MAX_LOADSTRING); MyRegisterClass(hInstance); // Perform application initialization: if (!InitInstance (hInstance, nCmdShow))  { return FALSE; } hAccelTable = LoadAccelerators(hInstance, (LPCTSTR)IDC_MY); // Main message loop: while (GetMessage(&msg, NULL, 0, 0))  { if (!TranslateAccelerator(msg.hwnd, hAccelTable, &msg))  { TranslateMessage(&msg); DispatchMessage(&msg); } } return msg.wParam; } // //  FUNCTION: MyRegisterClass() // //  PURPOSE: Registers the window class. // //  COMMENTS: // //    This function and its usage is only necessary if you want this code //    to be compatible with Win32 systems prior to the 'RegisterClassEx' //    function that was added to Windows 95. It is important to call this function //    so that the application will get 'well formed' small icons associated //    with it. // ATOM MyRegisterClass(HINSTANCE hInstance) { WNDCLASSEX wcex; wcex.cbSize = sizeof(WNDCLASSEX);  wcex.style = CS_HREDRAW | CS_VREDRAW; wcex.lpfnWndProc = (WNDPROC)WndProc; wcex.cbClsExtra = 0; wcex.cbWndExtra = 0; wcex.hInstance = hInstance; wcex.hIcon = LoadIcon(hInstance, (LPCTSTR)IDI_MY); wcex.hCursor = LoadCursor(NULL, IDC_ARROW); wcex.hbrBackground = (HBRUSH)(COLOR_WINDOW+1); wcex.lpszMenuName = (LPCSTR)IDC_MY; wcex.lpszClassName = szWindowClass; wcex.hIconSm = LoadIcon(wcex.hInstance, (LPCTSTR)IDI_SMALL); return RegisterClassEx(&wcex); } // //   FUNCTION: InitInstance(HANDLE, int) // //   PURPOSE: Saves instance handle and creates main window // //   COMMENTS: // //        In this function, we save the instance handle in a global variable and //        create and display the main program window. // BOOL InitInstance(HINSTANCE hInstance, int nCmdShow) {    HWND hWnd;    hInst = hInstance; // Store instance handle in our global variable    hWnd = CreateWindow(szWindowClass, szTitle, WS_OVERLAPPEDWINDOW,       CW_USEDEFAULT, 0, CW_USEDEFAULT, 0, NULL, NULL, hInstance, NULL);    if (!hWnd)    {       return FALSE;    }    ShowWindow(hWnd, nCmdShow);    UpdateWindow(hWnd);    return TRUE; } // //  FUNCTION: WndProc(HWND, unsigned, WORD, LONG) // //  PURPOSE:  Processes messages for the main window. // //  WM_COMMAND - process the application menu //  WM_PAINT - Paint the main window //  WM_DESTROY - post a quit message and return // // LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) { int wmId, wmEvent; PAINTSTRUCT ps; HDC hdc; TCHAR szHello[MAX_LOADSTRING]; LoadString(hInst, IDS_HELLO, szHello, MAX_LOADSTRING); switch (message)  { case WM_COMMAND: wmId    = LOWORD(wParam);  wmEvent = HIWORD(wParam);  // Parse the menu selections: switch (wmId) { case IDM_ABOUT:   DialogBox(hInst, (LPCTSTR)IDD_ABOUTBOX, hWnd, (DLGPROC)About);   break; case IDM_EXIT:   DestroyWindow(hWnd);   break; default:   return DefWindowProc(hWnd, message, wParam, lParam); } break; case WM_PAINT: hdc = BeginPaint(hWnd, &ps); // TODO: Add any drawing code here... RECT rt; GetClientRect(hWnd, &rt); DrawText(hdc, szHello, strlen(szHello), &rt, DT_CENTER); EndPaint(hWnd, &ps); break; case WM_DESTROY: PostQuitMessage(0); break; default: return DefWindowProc(hWnd, message, wParam, lParam);    }    return 0; } // Mesage handler for about box. LRESULT CALLBACK About(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam) { switch (message) { case WM_INITDIALOG: return TRUE; case WM_COMMAND: if (LOWORD(wParam) == IDOK || LOWORD(wParam) == IDCANCEL)  { EndDialog(hDlg, LOWORD(wParam)); return TRUE; } break; }     return FALSE; }

    標(biāo)簽: 計算器 學(xué)生

    上傳時間: 2016-12-29

    上傳用戶:767483511

  • 簡單的計算器

    // 學(xué)生管理.cpp : Defines the entry point for the application. // #include "stdafx.h" #include "resource.h" #define MAX_LOADSTRING 100 // Global Variables: HINSTANCE hInst; // current instance TCHAR szTitle[MAX_LOADSTRING]; // The title bar text TCHAR szWindowClass[MAX_LOADSTRING]; // The title bar text // Foward declarations of functions included in this code module: ATOM MyRegisterClass(HINSTANCE hInstance); BOOL InitInstance(HINSTANCE, int); LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM); LRESULT CALLBACK About(HWND, UINT, WPARAM, LPARAM); struct person {   char name[10];   int ID;   int cj_yw;   int cj_sx;   struct person* next;   struct person* pro; }per; int APIENTRY WinMain(HINSTANCE hInstance,                      HINSTANCE hPrevInstance,                      LPSTR     lpCmdLine,                      int       nCmdShow) {   // TODO: Place code here. MSG msg; HACCEL hAccelTable; // Initialize global strings LoadString(hInstance, IDS_APP_TITLE, szTitle, MAX_LOADSTRING); LoadString(hInstance, IDC_MY, szWindowClass, MAX_LOADSTRING); MyRegisterClass(hInstance); // Perform application initialization: if (!InitInstance (hInstance, nCmdShow))  { return FALSE; } hAccelTable = LoadAccelerators(hInstance, (LPCTSTR)IDC_MY); // Main message loop: while (GetMessage(&msg, NULL, 0, 0))  { if (!TranslateAccelerator(msg.hwnd, hAccelTable, &msg))  { TranslateMessage(&msg); DispatchMessage(&msg); } } return msg.wParam; } // //  FUNCTION: MyRegisterClass() // //  PURPOSE: Registers the window class. // //  COMMENTS: // //    This function and its usage is only necessary if you want this code //    to be compatible with Win32 systems prior to the 'RegisterClassEx' //    function that was added to Windows 95. It is important to call this function //    so that the application will get 'well formed' small icons associated //    with it. // ATOM MyRegisterClass(HINSTANCE hInstance) { WNDCLASSEX wcex; wcex.cbSize = sizeof(WNDCLASSEX);  wcex.style = CS_HREDRAW | CS_VREDRAW; wcex.lpfnWndProc = (WNDPROC)WndProc; wcex.cbClsExtra = 0; wcex.cbWndExtra = 0; wcex.hInstance = hInstance; wcex.hIcon = LoadIcon(hInstance, (LPCTSTR)IDI_MY); wcex.hCursor = LoadCursor(NULL, IDC_ARROW); wcex.hbrBackground = (HBRUSH)(COLOR_WINDOW+1); wcex.lpszMenuName = (LPCSTR)IDC_MY; wcex.lpszClassName = szWindowClass; wcex.hIconSm = LoadIcon(wcex.hInstance, (LPCTSTR)IDI_SMALL); return RegisterClassEx(&wcex); } // //   FUNCTION: InitInstance(HANDLE, int) // //   PURPOSE: Saves instance handle and creates main window // //   COMMENTS: // //        In this function, we save the instance handle in a global variable and //        create and display the main program window. // BOOL InitInstance(HINSTANCE hInstance, int nCmdShow) {    HWND hWnd;    hInst = hInstance; // Store instance handle in our global variable    hWnd = CreateWindow(szWindowClass, szTitle, WS_OVERLAPPEDWINDOW,       CW_USEDEFAULT, 0, CW_USEDEFAULT, 0, NULL, NULL, hInstance, NULL);    if (!hWnd)    {       return FALSE;    }    ShowWindow(hWnd, nCmdShow);    UpdateWindow(hWnd);    return TRUE; } // //  FUNCTION: WndProc(HWND, unsigned, WORD, LONG) // //  PURPOSE:  Processes messages for the main window. // //  WM_COMMAND - process the application menu //  WM_PAINT - Paint the main window //  WM_DESTROY - post a quit message and return // // LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) { int wmId, wmEvent; PAINTSTRUCT ps; HDC hdc; TCHAR szHello[MAX_LOADSTRING]; LoadString(hInst, IDS_HELLO, szHello, MAX_LOADSTRING); switch (message)  { case WM_COMMAND: wmId    = LOWORD(wParam);  wmEvent = HIWORD(wParam);  // Parse the menu selections: switch (wmId) { case IDM_ABOUT:   DialogBox(hInst, (LPCTSTR)IDD_ABOUTBOX, hWnd, (DLGPROC)About);   break; case IDM_EXIT:   DestroyWindow(hWnd);   break; default:   return DefWindowProc(hWnd, message, wParam, lParam); } break; case WM_PAINT: hdc = BeginPaint(hWnd, &ps); // TODO: Add any drawing code here... RECT rt; GetClientRect(hWnd, &rt); DrawText(hdc, szHello, strlen(szHello), &rt, DT_CENTER); EndPaint(hWnd, &ps); break; case WM_DESTROY: PostQuitMessage(0); break; default: return DefWindowProc(hWnd, message, wParam, lParam);    }    return 0; } // Mesage handler for about box. LRESULT CALLBACK About(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam) { switch (message) { case WM_INITDIALOG: return TRUE; case WM_COMMAND: if (LOWORD(wParam) == IDOK || LOWORD(wParam) == IDCANCEL)  { EndDialog(hDlg, LOWORD(wParam)); return TRUE; } break; }     return FALSE; }

    標(biāo)簽: 學(xué)生 計算器

    上傳時間: 2016-12-29

    上傳用戶:767483511

亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久久久久久久伊人| 欧美性一区二区| 影音先锋中文字幕一区二区| 欧美日韩精品三区| 亚洲欧美三级在线| 日韩一级裸体免费视频| 亚洲国产女人aaa毛片在线| 黄色成人av网站| 国产亚洲女人久久久久毛片| 国产精品久久看| 国产精品成人aaaaa网站| 欧美日韩国产小视频在线观看| 久久久久久久久久码影片| 欧美一区二区三区久久精品茉莉花| 亚洲一级片在线观看| 亚洲免费观看高清完整版在线观看| 亚洲大胆人体视频| 伊人久久婷婷色综合98网| 国内精品视频666| 一区二区三区在线免费观看| 裸体歌舞表演一区二区| 久久精品国产清高在天天线 | 亚洲高清免费在线| 在线观看一区欧美| 在线不卡中文字幕| 在线观看一区二区精品视频| 国模 一区 二区 三区| 国产一区二区久久| 久久九九久精品国产免费直播| 久久精品国产第一区二区三区| 欧美一区91| 欧美在线精品免播放器视频| 久久精品午夜| 美国十次成人| 欧美日韩在线免费| 国产精品欧美日韩一区二区| 国产日韩欧美另类| 狠狠综合久久| 亚洲啪啪91| 亚洲免费视频成人| 久久久久久尹人网香蕉| 欧美成人午夜免费视在线看片| 欧美乱妇高清无乱码| 国产精品啊v在线| 国产亚洲福利| 亚洲国产99| 一区二区三区黄色| 欧美一区免费| 欧美极品在线播放| 国产欧美欧美| 亚洲欧洲日韩综合二区| 亚洲女同精品视频| 久久综合精品一区| 欧美日韩国产片| 国产日韩欧美| 亚洲开发第一视频在线播放| 亚洲欧洲精品一区二区三区| 亚洲一区二区三区四区在线观看| 欧美一区=区| 欧美不卡一卡二卡免费版| 欧美视频一区在线观看| 韩国av一区二区三区| 99re热这里只有精品免费视频| 亚洲欧美日韩在线观看a三区| 久久亚洲电影| 欧美日韩一区二区欧美激情| 国产一区二区三区四区老人| 日韩亚洲成人av在线| 久久久99精品免费观看不卡| 欧美日韩福利视频| 国产一区二区三区四区老人| 日韩亚洲国产精品| 老司机免费视频久久| 国产精品视频福利| 国产麻豆日韩| 一本色道久久99精品综合| 久久精品视频在线播放| 国产精品久久久久久久久动漫| 亚洲欧洲一区二区在线播放| 久久午夜视频| 国外视频精品毛片| 午夜在线不卡| 国产精品毛片a∨一区二区三区|国| 亚洲第一级黄色片| 久久久免费精品| 国产欧美日韩一区| 在线亚洲电影| 欧美日韩国产a| 99国产精品视频免费观看一公开 | 久久国产精品72免费观看| 国产精品mm| 日韩视频一区二区| 欧美激情久久久久久| 在线观看视频一区| 久久综合久久综合九色| 国产午夜精品久久久久久久| 亚洲男人的天堂在线aⅴ视频| 欧美日韩在线一区二区三区| 亚洲精品1区2区| 免费成人激情视频| 亚洲欧洲一区二区天堂久久 | 一本久道久久综合中文字幕| 麻豆精品在线播放| 1769国产精品| 欧美多人爱爱视频网站| 亚洲国产视频a| 欧美日韩国产二区| 一区二区国产日产| 欧美午夜精品| 亚洲欧美影院| 国产视频一区在线观看| 久久久久国产一区二区三区| 18成人免费观看视频| 欧美本精品男人aⅴ天堂| 亚洲精品欧美激情| 国产精品嫩草久久久久| 久久精品91| 亚洲日本aⅴ片在线观看香蕉| 欧美日韩在线直播| 久久精品123| 91久久精品一区| 国产精品亚洲综合天堂夜夜| 久久蜜桃精品| 日韩性生活视频| 国产精品亚洲综合| 免费观看在线综合色| 亚洲无限av看| 韩国女主播一区二区三区| 美日韩丰满少妇在线观看| 日韩午夜在线| 国产偷国产偷亚洲高清97cao| 男女精品视频| 亚洲一区中文| 欧美精品v日韩精品v韩国精品v| 亚洲精品看片| 国产欧美日韩精品丝袜高跟鞋| 久久婷婷国产综合国色天香| 亚洲国产精品欧美一二99| 欧美人成免费网站| 亚洲国产激情| 国产精品国产三级国产普通话蜜臀 | 欧美精品九九99久久| 亚洲美女视频在线观看| 欧美日韩国产黄| 午夜精品久久一牛影视| 亚洲免费高清| 国产热re99久久6国产精品| 狂野欧美一区| 亚洲视频在线看| 欧美日一区二区在线观看 | 欧美中文字幕精品| 亚洲福利在线看| 国产一区二区三区高清在线观看| 女人色偷偷aa久久天堂| 久久精品视频免费播放| 亚洲美女诱惑| 亚洲欧洲在线看| 国产精品久久久久久久app| 欧美精品亚洲| 欧美一区视频| 午夜精品久久久久久久| 亚洲国内自拍| 亚洲大胆人体视频| 国产伦精品一区| 欧美精品在线极品| 午夜久久资源| 午夜精品久久99蜜桃的功能介绍| 在线成人激情| 国产日韩欧美综合| 欧美成人久久| 免费成人高清| 久久精品国产一区二区三区| 99pao成人国产永久免费视频| 国产亚洲网站| 好看的日韩视频| 国产精品国产三级国产普通话99 | 欧美亚洲尤物久久| 久久久蜜桃一区二区人| 久久精品免费观看| 亚洲欧洲av一区二区三区久久| 亚洲福利一区| 国产精品美女在线观看| 欧美日韩在线播| 欧美成人亚洲成人日韩成人| 久久激情一区| 久久久久久久综合狠狠综合| 香蕉亚洲视频| 亚洲综合色噜噜狠狠| 一区二区三区 在线观看视| 亚洲精品久久在线| 亚洲二区在线| 国内精品久久久| 亚洲精品国产拍免费91在线| 亚洲第一区在线| 亚洲国产精品一区二区第四页av| 国产精品一区二区在线观看| 国产一区二区高清视频| 国产一区二区观看| 狠狠爱综合网| av成人国产|