亚洲欧美第一页_禁久久精品乱码_粉嫩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一区二区三区免费野_久草精品视频
国产日韩精品一区二区三区| 欧美国产日韩a欧美在线观看| 欧美成人按摩| 亚洲毛片在线观看| 欧美成人午夜77777| 久久精品国产清自在天天线| 午夜国产精品视频免费体验区| 亚洲一区精品电影| 久久久久88色偷偷免费| 欧美一区二区三区久久精品| 亚洲视频免费看| 欧美一区二区高清在线观看| 久久久噜噜噜久久| 亚洲日本欧美| 亚洲一级特黄| 麻豆精品传媒视频| 欧美日韩国产麻豆| 国产欧美69| 亚洲美女av网站| 欧美一区视频| 欧美日韩在线高清| 国产欧美一区二区精品忘忧草| 亚洲高清色综合| 国产一区二区三区高清在线观看 | 91久久久精品| 欧美在线免费视频| 国产精品久久久久永久免费观看| 国外成人在线| 香蕉久久精品日日躁夜夜躁| 欧美片第1页综合| 亚洲精品视频一区| 久久久水蜜桃| 激情综合久久| 久久看片网站| 亚洲国产1区| 麻豆久久精品| 亚洲激情视频| 欧美日韩国语| 亚洲欧美成人精品| 国产精品私拍pans大尺度在线| 欧美另类专区| 亚洲电影第三页| 久久精品观看| 国产毛片精品国产一区二区三区| 亚洲日本中文字幕区| 最新中文字幕一区二区三区| 久久国产精品99久久久久久老狼 | 亚洲精品一二三| 欧美69wwwcom| 日韩亚洲欧美精品| 午夜精品久久久久久久99樱桃| 欧美激情a∨在线视频播放| 亚洲黄色在线看| 韩日欧美一区二区| 国产精自产拍久久久久久| 欧美一区二区三区四区视频| 国产在线乱码一区二区三区| 免费黄网站欧美| 亚洲电影免费观看高清完整版| 欧美大片在线观看| 中文一区二区在线观看| 亚洲风情在线资源站| 国产精品白丝jk黑袜喷水| 欧美一级视频| 一本久久青青| 黄色在线一区| 国产欧美日韩亚洲| 欧美午夜精彩| 欧美精品国产精品| 久久欧美中文字幕| 性高湖久久久久久久久| 日韩一区二区精品葵司在线| 国产午夜精品美女视频明星a级| 欧美国产综合一区二区| 久久激情综合| 性欧美大战久久久久久久久| 欧美日韩视频一区二区三区| 亚洲高清视频的网址| 国产免费观看久久| 欧美激情综合亚洲一二区| 久久久久久综合网天天| 亚洲永久免费av| 美女视频网站黄色亚洲| 在线播放豆国产99亚洲| 亚洲精品一区中文| 亚洲美女啪啪| 欧美精品日本| 老司机久久99久久精品播放免费| 欧美精品成人一区二区在线观看| 日韩一区二区免费高清| 免费看亚洲片| 亚洲大胆人体在线| 久久久精品999| 国内精品99| 欧美激情综合五月色丁香| 日韩五码在线| 国产伦精品一区二区三区视频黑人| 欧美一区二区三区精品| 欧美日产在线观看| 国产精品推荐精品| 欧美一区二区视频在线观看2020| 亚洲视频电影图片偷拍一区| 久久精品中文字幕一区| aa级大片欧美三级| 亚洲一区二区黄| 麻豆久久婷婷| 国产色综合久久| 亚洲肉体裸体xxxx137| 欧美日韩精品欧美日韩精品| 麻豆91精品91久久久的内涵| 欧美国产另类| 日韩午夜免费| 久久一二三区| 国产精品久久久一区二区| 亚洲大片av| 久久综合狠狠综合久久综青草| 欧美日本精品| 夜夜嗨av一区二区三区网站四季av | 亚洲精品久久久一区二区三区| 亚洲欧美日韩国产中文在线| 99re这里只有精品6| 一区二区欧美激情| 久久综合色88| 在线看欧美视频| 欧美一区二区三区四区视频| 欧美日韩精品一区视频| 亚洲国产精品尤物yw在线观看| 麻豆乱码国产一区二区三区| 精品96久久久久久中文字幕无| 久久先锋影音av| 日韩视频一区二区三区在线播放免费观看| 久久青草久久| 亚洲欧美乱综合| 99精品福利视频| 国产精品成人va在线观看| 中文日韩在线视频| 国产精品一区二区视频| 欧美~级网站不卡| 亚洲精品一级| 久久久久久久一区二区三区| 国内精品久久久久影院优| 欧美日本中文| 午夜亚洲一区| 亚洲国产精品视频一区| 国产精品wwwwww| 欧美一区二区三区四区高清| 欧美日韩国产在线观看| 在线观看日韩av电影| 久久人人看视频| 国产亚洲福利| 欧美激情片在线观看| 最新成人在线| 亚洲国产一区二区三区a毛片| 男女精品网站| 快射av在线播放一区| 狠狠色丁香久久婷婷综合丁香| 亚洲精品在线免费观看视频| 国产自产v一区二区三区c| 亚洲伦理在线观看| 欧美福利视频在线| 免费亚洲电影| 亚洲人成网站精品片在线观看| 狠狠色狠狠色综合日日tαg| 久久久久久香蕉网| 亚洲视频碰碰| 欧美午夜剧场| 欧美一区亚洲二区| 亚洲日产国产精品| 国产精品久久999| 国产日韩欧美在线看| 欧美**字幕| 午夜精品久久久久久久久久久| 国产精品午夜电影| 免费美女久久99| 西瓜成人精品人成网站| 国产精品家庭影院| 国产精品毛片a∨一区二区三区| 你懂的国产精品| 欧美性猛交xxxx乱大交退制版| 老司机aⅴ在线精品导航| 久久久精品一区二区三区| 免费高清在线一区| 亚洲一区二区伦理| 久久久久久自在自线| 在线亚洲成人| 久久久久久综合网天天| 欧美一区二区三区男人的天堂| 亚洲国产另类久久精品| 最新成人av在线| 亚洲国产综合在线| 久久av一区二区| 欧美一区日本一区韩国一区| 午夜久久资源| 欧美精品久久久久久| 国产精品久久久久久久久久久久久 | 欧美激情视频一区二区三区免费| 亚洲欧美一区在线| 亚洲视频中文| 欧美在线观看你懂的| 欧美福利一区二区|