MFC中静态文本控件显示的几种实现方式

示例如下:
1.DDX_TEXT:
.h文件声明:CString m_flashplayerversion;

.cpp调用:           DDX_Text(pDX,IDC_STATIC_FlashPlayerVersion,m_flashplayerversion);


2.SetWindowText实现:

GetDlgItem(IDC_STATIC_FlashPlayerVersion)->SetWindowText(_T("xxxxx"));

你可能感兴趣的:(mfc)