mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 12:53:33 +00:00
15 lines
505 B
Plaintext
15 lines
505 B
Plaintext
#include <windows.h>
|
|
#include <commctrl.h>
|
|
#include "resource.h"
|
|
|
|
IDD_IMGLST DIALOGEX 6,6,303,216
|
|
CAPTION "Imagelist Viewer"
|
|
FONT 8, "MS Sans Serif", 0, 0
|
|
STYLE WS_BORDER | WS_VISIBLE | WS_SYSMENU
|
|
BEGIN
|
|
CONTROL "", IDC_LSTVIEW, "SysListView32", WS_CHILD | WS_VISIBLE | WS_BORDER | LVS_LIST | LVS_SMALLICON | LVS_SHAREIMAGELISTS, 0, 0, 302, 200
|
|
DEFPUSHBUTTON "System IL", IDC_SYSTEM, 2, 202, 54, 13
|
|
PUSHBUTTON "Device IL", IDC_DEVICE, 60, 202, 54, 13
|
|
PUSHBUTTON "Close", IDOK, 248, 202, 54, 13
|
|
END
|