mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 04:37:32 +00:00
fb58782012
Add IME conversion tests to verify IMM/IME support. CORE-11700
17 lines
491 B
Plaintext
17 lines
491 B
Plaintext
#include <windows.h>
|
|
#include <commctrl.h>
|
|
#pragma code_page(65001) /* UTF-8 */
|
|
|
|
LANGUAGE LANG_JAPANESE, SUBLANG_DEFAULT
|
|
|
|
1 DIALOG 0, 0, 215, 135
|
|
CAPTION "JapanImeConvTest"
|
|
STYLE DS_CENTER | DS_MODALFRAME | WS_POPUPWINDOW | WS_CAPTION
|
|
FONT 9, "MS UI Gothic"
|
|
{
|
|
EDITTEXT edt1, 8, 7, 147, 14
|
|
LISTBOX lst1, 7, 30, 202, 82, LBS_NOINTEGRALHEIGHT | LBS_HASSTRINGS | WS_VSCROLL | WS_TABSTOP
|
|
DEFPUSHBUTTON "OK", IDOK, 35, 115, 60, 14
|
|
PUSHBUTTON "Cancel", IDCANCEL, 115, 115, 60, 14
|
|
}
|