次の方法で共有


CWindow::SetWindowText

ウィンドウのテキストを変更します。

BOOL SetWindowText(
   LPCTSTR lpszString 
) throw();

解説

Windows SDKの SetWindowText を参照してください。

使用例

//The following example attaches an HWND to the CWindow object and 
//calls CWindow::SetWindowText() to set the new title-text of the 
//window

CWindow myWindow;
myWindow.Attach(hWnd);
myWindow.SetWindowText(_T("Hello ATL"));

必要条件

Header: atlwin.h

参照

関連項目

CWindow クラス

CWindow::GetWindowText