mirror of
https://github.com/reactos/reactos.git
synced 2025-01-03 21:09:19 +00:00
fce898063e
The proof of #1842. Property sheet does unchange the page after WM_INITDIALOG. CORE-16280
21 lines
452 B
Text
21 lines
452 B
Text
#include <windef.h>
|
|
#include <winuser.h>
|
|
#include <dlgs.h>
|
|
|
|
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
|
|
|
|
#include <reactos/manifest_exe.rc>
|
|
|
|
5 BITMAP "test.bmp"
|
|
|
|
LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
|
|
|
|
1 DIALOG 0, 0, 171, 82
|
|
CAPTION "propsheet page1"
|
|
STYLE DS_MODALFRAME | WS_POPUPWINDOW | WS_CAPTION
|
|
FONT 9, "MS Shell Dlg"
|
|
{
|
|
EDITTEXT edt1, 29, 22, 60, 14
|
|
DEFPUSHBUTTON "OK", IDOK, 25, 60, 60, 14
|
|
PUSHBUTTON "Cancel", IDCANCEL, 96, 60, 60, 14
|
|
}
|