CWindow::GetWindowTextLength

今度はテキストを取得できるように、まずはCWindow::GetWindowTextLengthを実装して、テキストの長さを取得する。
Window.hで、

GetWindowTextLengthを追加。
Window.cppにて、

中で、Win32APIのGetWindowTextLengthを呼んでる。
MainWindow.hで、

CButtonCoreのm_pButtonに加えて、CEditCoreのm_pEditも用意。
MainWindow.cppは、

メニューアイテムのItem1-1を選択された時、取得した長さをメッセージボックスで表示。

これ追加しないとエラー出る
これ追加しないとエラー出る

これ追加しないとエラー出る。

Item1-1を選択すると
Item1-1を選択すると

Item1-1を選択すると、

"Edit1"は5文字なので"5"と出る。
"Edit1"は5文字なので"5"と出る。

"Edit1"は5文字なので"5"と出る。

Test/winapi/CWindow/GetWindowTextLength/src/CWindow at master · bg1bgst333/Test · GitHub