/
BirdLeon
/
ROBLOX2016
Обзор
Документация
Войти
/
BirdLeon
/
ROBLOX2016
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
Installer/Bootstrapper/MainDialog.cpp
25 строк
515 B
PatoFlamejanteTV
full source code
19 дек 2024, 19:11
19 дек 2024, 19:11
05db15d
Код
Авторство
О чём код?
#include "StdAfx.h" #include "MainDialog.h" #include "LegacyDialog.h" #include "ProgressDialog.h" #include "TaskDialog.h" #include "VistaTools.h" CMainDialog* CMainDialog::Create(HINSTANCE instance) { CMainDialog *result = NULL; /* We wont hide cancel button. Vista uses task dialog, I was not able to find the way to hide all buttons on TaskDialog. if (IsVista()) result = new CTaskDialog(instance); else */ result = new CProgressDialog(instance); result->SetCancelVisible(false); return result; }