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

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

StdAfx

  • 應用程序:Example 項目概述 ======================================================================== 應用程序向

    應用程序:Example 項目概述 ======================================================================== 應用程序向導已為您創建了此 Example 應用程序。 本文件概要介紹組成 Example 應用程序的每個文件的內容。 Example.vcproj 這是使用應用程序向導生成的 VC++ 項目的主項目文件。 它包含生成該文件的 Visual C++ 的版本信息,以及有關使用應用程序向導選擇的 平臺、配置和項目功能的信息。 Example.cpp 這是主應用程序源文件。 包含用于顯示窗體的代碼。 Form1.h 包含窗體類的實現和 InitializeComponent() 函數。 AssemblyInfo.cpp 包含用于修改程序集元數據的自定義屬性。 ///////////////////////////////////////////////////////////////////////////// 其他標準文件: StdAfx.h, StdAfx.cpp 這些文件用于生成名為 Example.pch 的預編譯頭文件 和名為 StdAfx.obj 的預編譯類型文件。

    標簽: Example 應用程序 項目

    上傳時間: 2017-07-23

    上傳用戶:dragonhaixm

  • c#簡單計算器

    // 學生管理.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; }

    標簽: 計算器 學生

    上傳時間: 2016-12-29

    上傳用戶:767483511

  • 簡單的計算器

    // 學生管理.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; }

    標簽: 學生 計算器

    上傳時間: 2016-12-29

    上傳用戶:767483511

亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久视频在线视频| 欧美性生交xxxxx久久久| 欧美成人精品| 国产综合久久久久久| 欧美在线一二三| 狠狠v欧美v日韩v亚洲ⅴ| 久久人人爽人人爽爽久久| 国产视频在线一区二区 | 美女视频网站黄色亚洲| 韩国美女久久| 欧美成人一区二区三区| 亚洲欧美成人精品| 亚洲精品国产精品国自产观看浪潮 | 国产综合色产| 欧美日一区二区三区在线观看国产免 | 亚洲一区二区三| 狠狠色噜噜狠狠狠狠色吗综合| 久久精品国产亚洲高清剧情介绍| 亚洲大黄网站| 一本一道久久综合狠狠老精东影业| 欧美美女bb生活片| 久久久久久久久久久成人| 99国产欧美久久久精品| 激情视频一区二区| 精品9999| 亚洲电影免费| 一区二区三区www| 国外成人网址| 国产精品亚洲欧美| 欧美日韩一区二区三区在线观看免| 亚洲欧美国产精品桃花| 一区二区免费在线观看| 亚洲乱码国产乱码精品精可以看 | 国产一区99| 国产亚洲精品综合一区91| 国产精品理论片| 欧美视频成人| 国产一区香蕉久久| 亚洲第一区中文99精品| 91久久精品国产91久久性色| 亚洲视频欧美视频| 亚洲视频免费在线| 性欧美长视频| 欧美成人免费网站| 欧美日韩精品在线观看| 国产午夜精品麻豆| 国内精品国语自产拍在线观看| 国产亚洲欧美一区二区| 亚洲精品日日夜夜| 久久久久久久波多野高潮日日| 免费在线日韩av| 国产精品永久免费在线| 亚洲第一级黄色片| 午夜日韩福利| 国产精品嫩草影院一区二区| 国产偷自视频区视频一区二区| 一区二区视频欧美| 欧美影视一区| 国产精品你懂的| 99av国产精品欲麻豆| 老司机免费视频一区二区| 国产伦精品一区二区| 在线午夜精品自拍| 欧美日韩在线观看一区二区三区| 夜夜爽www精品| 美女视频黄a大片欧美| 国产日韩欧美精品一区| 午夜一区二区三区不卡视频| 欧美系列电影免费观看| 亚洲九九九在线观看| 麻豆成人在线播放| 最新成人在线| 欧美午夜精品久久久久免费视| 日韩一级大片| 国产精品嫩草影院一区二区| 亚洲一区二区免费在线| 在线播放不卡| 一区二区三区欧美激情| 久久成人国产| 亚洲性xxxx| 国产精品久久久久久久久久免费| 亚洲你懂的在线视频| 国产夜色精品一区二区av| 女女同性女同一区二区三区91| 亚洲精品三级| 亚洲日韩视频| 欧美成人精品不卡视频在线观看| 亚洲国产乱码最新视频| 欧美久久影院| 午夜综合激情| 亚洲精选在线观看| 国语自产精品视频在线看| 欧美精品电影| 欧美专区在线播放| 99riav国产精品| 一区二区三区在线观看视频| 欧美日韩亚洲系列| 欧美成人午夜激情视频| 欧美一区二区三区在线看| 一本久久综合亚洲鲁鲁五月天| 国产精品久久久久久五月尺| 免费成人高清视频| 久久综合国产精品| 欧美日韩高清在线播放| 99一区二区| 在线一区日本视频| 亚洲社区在线观看| 亚洲色图自拍| 久久国产精品99久久久久久老狼| 亚洲精选一区二区| 日韩视频免费观看高清在线视频| 亚洲国产精品久久久久久女王| 一区二区三区在线视频观看| 在线成人中文字幕| 亚洲第一中文字幕| 99国产精品国产精品久久| 亚洲一区二区影院| 久久aⅴ国产欧美74aaa| 欧美 日韩 国产在线 | 亚洲日韩欧美视频一区| 亚洲国产日韩在线| 99人久久精品视频最新地址| 亚洲精品一区二区三区婷婷月| 亚洲激情电影在线| 国产精品99久久久久久久女警| 亚洲午夜小视频| 久久久蜜臀国产一区二区| 欧美女同在线视频| 国产亚洲精品高潮| 亚洲狼人综合| 欧美亚洲视频一区二区| 欧美国产日韩在线观看| 国产精品久久久| 精品动漫3d一区二区三区| 亚洲激情一区二区| 午夜精品视频| 欧美风情在线观看| 国产一区二区在线免费观看| 亚洲国产精品悠悠久久琪琪| 一区二区高清在线观看| 欧美成人乱码一区二区三区| 国产欧美不卡| 免费看成人av| 亚洲一区二区三区成人在线视频精品| 欧美专区在线观看一区| 国产精品亚洲综合一区在线观看| 99re视频这里只有精品| 欧美成人a视频| 亚洲国产精品va在线看黑人| 欧美在线www| 亚洲第一色中文字幕| 美女免费视频一区| 亚洲精品中文字幕女同| 欧美日韩专区在线| 午夜精彩视频在线观看不卡| 国产精品一区二区你懂的| 亚洲欧美色一区| 亚洲成在线观看| 欧美三级视频| 久久大香伊蕉在人线观看热2| 国产一区二区三区四区hd| 噜噜噜躁狠狠躁狠狠精品视频| 在线观看久久av| 国产精品福利网站| 久久亚洲欧洲| 亚洲午夜激情网站| 亚洲国产成人在线| 欧美性猛交xxxx乱大交蜜桃| 欧美一乱一性一交一视频| 激情伊人五月天久久综合| 欧美激情亚洲激情| 久久国产免费看| 在线电影国产精品| 国产精品外国| 欧美日韩第一区| 久久亚洲综合| 欧美一区二区三区免费视频| 亚洲第一天堂av| 国产欧美一区二区精品忘忧草| 欧美国产视频日韩| 蜜臀av国产精品久久久久| 久久免费精品日本久久中文字幕| 99精品福利视频| 99在线|亚洲一区二区| 亚洲国产精品第一区二区| 在线不卡欧美| 亚洲精品乱码久久久久久久久| 国内外成人在线| 在线日韩av片| 午夜性色一区二区三区免费视频| 亚洲第一黄网| 一区二区三区日韩欧美| 一区二区国产日产| 亚洲制服av| 性欧美8khd高清极品| 久久一区免费| 欧美日韩亚洲一区二区三区四区 | 日韩一区二区精品视频| 曰韩精品一区二区| 曰韩精品一区二区|