[MFC] _ windows应用程序(win32)简单了解和使用

在前面,我们都是通过控制台程序来学习c++语言的,那么我们知道,windows之所以强大,是应为它是一个图形化的支持多任务处理的一个系统,所以windows应用程序更控制台程序最大的区别就是它是多任务的,可以同时运行多个,进行多任务的处理,而控制台程序是单任务的,只能按程序设计流程单步进行.

  • MFC(Microsoft Foundation Class)微软 基础 类库

  • API(Application Programming Interface) 应用程序,编程 接口.
    是由操作系统提供,面向操作系统开发的接口.只限于本操作系统使用.c/c++库函数,不分任何操作系统.只要是使用c/c++编译器即可.

  • DOS: 同一时间只能运行一个执行程序.

  • Windows: 是一种基于图形化界面的多任务操作系统,它使用图形界面操作代替了早期的以命令为基础的文本输入型操作系统.

  • WinMain是windows程序的主函数,该函数的功能是被系统调用,作为一个32位应用程序的入口点。WinMain函数应初始化应用程序,显示主窗口,进入一个消息接收一发送循环,这个循环是应用程序执行的其余部分的顶级控制结构。

  • windows程序一般主要都是基于windows系统 的API函数来开发的,只限于本操作系统使用.每个windows api都来自一个windows系统(内核,是系统自带的)的DLL动态库(可以在本地对应的位置找到的).

  • 控制台程序一般都是调用的c/c++类库的函数(各个操作系统都通用).


  • MessageBox function 函数

Displays(显示) a modal(模式的) dialog(对话) box that contains a system icon, a set of buttons, and a brief application-specific message, such as status or error information. The message box returns an integer value that indicates which button the user clicked.

显示一个模式对话框,该对话框包含系统图标,一组按钮以及指定的应用程序的简短消息,例如状态或错误信息。 该消息框返回一个整数值,该整数值指示用户单击了哪个按钮。

dialog box: 对话框,一定是有对话的,点击了什么,显示什么,消息的接收和处理.
参数:

int WINAPI MessageBox(
  _In_opt_ HWND    hWnd,
  _In_opt_ LPCTSTR lpText,
  _In_opt_ LPCTSTR lpCaption,
  _In_     UINT    uType
);
hWnd [in, optional] //optional (可选的,自选的)
Type: HWND(类型:HWND)

//A handle(句柄) to the owner(所有者) window of the message box to be created. If this parameter(参数) is NULL, the message box has no owner window.
//一个关于消息框创建弹出时父类窗口的句柄(指向消息框创建时弹出的位置).

lpText [in, optional] // 一个字符串
Type: LPCTSTR  
//The message to be displayed(显示). If the string consists(组成) of more than one line, you can separate(分离,隔开) the lines using a carriage(运输运送) return and/or linefeed(换行) character between(之间) each line.
//carriage return 回车.
//这条消息将会显示,如果这个字符串包括多行组成,你可以在每行之间使用回车或换行符换行.

lpCaption(标题,字幕) [in, optional] 
Type: LPCTSTR

// The dialog box title. If this parameter is NULL, the default(默认) title is Error.
// 对话框的标题,如果参数为空,则默认标题为Error

uType [in] 
Type: UINT
//The contents(内容) and behavior(行为) of the dialog box. This parameter(参数) can be a combination(组合) of flags(标志) from the following(以下) groups(组) of flags.
// 类型,指定消息框的类型(有很多).可以是一个组合来自以下标志组的标志类型.
//To indicate(标明,指示) the buttons displayed in the message box, specify(指定,指明) one of the following values.
//要指示这个消息框的按钮,可以指定下面的值之一.
  • examples
int DisplayResourceNAMessageBox()
{
    int msgboxID = MessageBox(
        NULL,
        (LPCWSTR)L"Resource not available\nDo you want to try again?",
        (LPCWSTR)L"Account Details",
        MB_ICONWARNING | MB_CANCELTRYCONTINUE | MB_DEFBUTTON2
    );

    switch (msgboxID)
    {
    case IDCANCEL:
        // TODO: add code
        break;
    case IDTRYAGAIN:
        // TODO: add code
        break;
    case IDCONTINUE:
        // TODO: add code
        break;
    }

    return msgboxID;
}

我们在创建的win32空项目中新建一个源cpp文件,引入windows.h头文件,声明主函数,调用MessageBox函数显示一个对话框,即算是创建了一个简单的windows应用程序了.

# include

int WINAPI WinMain(HINSTANCE hinstance,HINSTANCE hprev,LPSTR lpCmd,int nCmdShow) {

    // 这里涉及到字符集的问题,在vs2005之后就引入了unicode字符集,
    // 在使用unicode的时候,需要注意字符类型的转换.使用多字节就不需要转换,还是可以正常使用
    // MessageBox(NULL,(LPWSTR)L"this is a message",(LPWSTR)L"message box caption",0);

    // 当Hwnd parameter 为NULL时,相当于将自己作为父窗口.

    MessageBox(NULL,"this is a message box", "message box caption", 0);

    return 0;
}
图片.png

2019.12.20
14:42

你可能感兴趣的:([MFC] _ windows应用程序(win32)简单了解和使用)