What is the Message that matches the TextChanged property in .NET for C++\Win32?
Assuming you're talking about the Edit control, EN_CHANGE
is the notification you're looking for. The parent of the Edit control receives the notification via the WM_COMMAND
message, with HIWORD(wParam) == EN_CHANGE
, LOWORD(wParam) == edit control identifier
and lParam == edit control HWND
.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With