首页 > 代码库 > C++ Caption
C++ Caption
主题 |
1. 设置控件的标题文本 2. 获取控件的标题文本 |
Caption属性 |
取得一个窗体的标题(caption)文字,或者一个控件的内容 |
红色的部分就是 Caption 标题
SetWindowText |
BOOL SetWindowText( HWND hWnd, LPCTSTR lpString ); |
SetDlgItemText |
void SetDlgItemText( int nID, //控件的ID号 LPCTSTR lpszString //字符串 ); |
设置控件的标题文本 使用API SetWindowText |
//使用CWnd CWnd *pWnd; pWnd = GetDlgItem( IDC_BUTTON1 ); //按钮1的ID pWnd->SetWindowText( "ABC" ); //设置主窗体的标题 SetWindowText(_T("MFC")); //设置按钮的文本 GetDlgItem(IDC_BUTTON1)->SetWindowText(_T("BTN1")); //或 SetDlgItemText(IDC_BUTTON1,"ABCD"); //设置多选框的文字 (关联变量) m_CHK1.SetWindowText(_T("CheckBox1")); //或 SetDlgItemText(IDC_CHECK1,"ABCD"); |
GetWindowText |
int GetWindowText( HWND hWnd, LPTSTR lpString, int nMaxCount ); |
GetDlgItemText |
int GetDlgItemText( int nID, LPTSTR lpStr, int nMaxCount ) const; int GetDlgItemText( int nID, CString& rString ) const; |
获取控件的标题文本 使用API GetWindowText可以实现 |
//获取到按钮1的文本 并设置给主窗体的标题 CString str; this->GetDlgItem(IDC_BUTTON1)->GetWindowText(str); this->SetWindowText(str); CString s; GetDlgItemText(IDC_BUTTON1,s); MessageBox(s); |
来自为知笔记(Wiz)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。