目前共有2篇帖子。 字體大小:較小 - 100% (默認)▼  內容轉換:不轉換▼
 
點擊 回復
220 1
【示例】C++模仿JavaScript的alert和confirm函数
一派護法 十九級
1樓 發表于:2015-12-5 14:51
【代码】
#include <Windows.h>
#include <CommCtrl.h>

#pragma comment(lib, "Comctl32.lib")
#pragma comment(linker, "\"/manifestdependency:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'\"")

#define TITLE L"Hello"

void alert(LPWSTR message)
{
    MessageBox(NULL, message, TITLE, MB_ICONWARNING);
}

BOOL confirm(LPWSTR message)
{
    return (MessageBox(NULL, message, TITLE, MB_ICONQUESTION | MB_YESNO | MB_DEFBUTTON2) == IDYES);
}

int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
{
    if (confirm(L"Are you sure you want to say hello?"))
        alert(L"Hello World!");
    else
        alert(L"You are not welcome.");
    return 0;
}
【运行结果】

一派護法 十九級
2樓 發表于:2015-12-5 14:52
当点击Yes:

当点击No:

回復帖子

內容:
用戶名: 您目前是匿名發表
驗證碼:
(快捷鍵:Ctrl+Enter)
 

本帖信息

點擊數:220 回複數:1
評論數: ?
作者:巨大八爪鱼
最後回復:巨大八爪鱼
最後回復時間:2015-12-5 14:52
 
©2010-2024 Arslanbar Ver2.0
除非另有聲明,本站採用創用CC姓名標示-相同方式分享 3.0 Unported許可協議進行許可。