I've created a simple window with:
CreateWindowExW(
WS_EX_TOPMOST,
L"RichEdit20W",
L"window_text",
WS_OVERLAPPEDWINDOW | WS_BORDER | WS_HSCROLL | WS_VSCROLL | ES_MULTILINE //...
now every time I hange "window text" parameter, both control and window title is changing, the same with SetWindowTextW() and SendMessageW(hwnd, WM_SETTEXT, ...).