C語言程式

來源:互聯網
上載者:User
#include "stdafx.h"#include <windows.h>#include <windowsx.h>#include "resource.h"#include "MainDlg.h"#include <stdlib.h>BOOL WINAPI Main_Proc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam){    switch(uMsg)    {        HANDLE_MSG(hWnd, WM_INITDIALOG, Main_OnInitDialog);        HANDLE_MSG(hWnd, WM_COMMAND, Main_OnCommand);HANDLE_MSG(hWnd,WM_CLOSE, Main_OnClose);    }    return FALSE;}BOOL Main_OnInitDialog(HWND hwnd, HWND hwndFocus, LPARAM lParam){    return TRUE;}void Main_OnCommand(HWND hwnd, int id, HWND hwndCtl, UINT codeNotify){if (IDC_CLOSE == id){Main_OnClose(hwnd);}if (IDC_BUTTON1 == id){TCHAR n1[64];GetWindowText(GetDlgItem(hwnd,IDC_EDIT1),n1,sizeof(n1));if (0 == strlen(n1)) //加數1是否為空白{MessageBox(hwnd,TEXT("加數1不可為空,請重新輸入!"),TEXT("警告"),MB_OK);return;}/*MessageBox(hwnd,n1,TEXT("1111"),MB_OK);*/TCHAR n2[64];GetWindowText(GetDlgItem(hwnd,IDC_EDIT2),n2,sizeof(n2));if (0 == strlen(n2)) //加數1是否為空白{MessageBox(hwnd,TEXT("加數2不可為空,請重新輸入!"),TEXT("警告"),MB_OK);return;}int d1=atoi(n1);int d2=atoi(n2);int ret=d1+d2;TCHAR j[128];wsprintf(j,"%i",ret);SetWindowText(GetDlgItem(hwnd,IDC_EDIT3),j);}}void Main_OnClose(HWND hwnd){    EndDialog(hwnd, 0);}
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.