mirror of
https://github.com/VincentWei/MiniGUI.git
synced 2025-12-07 18:53:09 +08:00
40 lines
634 B
C
40 lines
634 B
C
static DLGTEMPLATE DlgInitProgress =
|
|
{
|
|
WS_BORDER | WS_CAPTION,
|
|
WS_EX_NONE,
|
|
120, 150, 400, 130,
|
|
"VAM-CNC is initializing",
|
|
0, 0,
|
|
3, NULL,
|
|
0
|
|
};
|
|
|
|
static CTRLDATA CtrlInitProgress [] =
|
|
{
|
|
{
|
|
"static",
|
|
WS_VISIBLE | SS_SIMPLE,
|
|
10, 10, 380, 16,
|
|
IDC_PROMPTINFO,
|
|
"Initialize...",
|
|
0
|
|
},
|
|
{
|
|
"progressbar",
|
|
WS_VISIBLE,
|
|
10, 40, 380, 20,
|
|
IDC_PROGRESS,
|
|
NULL,
|
|
0
|
|
},
|
|
{
|
|
"button",
|
|
WS_TABSTOP | WS_VISIBLE | BS_DEFPUSHBUTTON,
|
|
170, 70, 60, 25,
|
|
IDOK,
|
|
"OK",
|
|
0
|
|
}
|
|
};
|
|
|