mfc中添加了edit,怎么向edit里面填充字符串

2024-12-25 03:43:51
推荐回答(3个)
回答1:

先创建一个edit对象,然后可以调用void ReplaceSel(LPCTSTR lpszNewText, BOOL bCanUndo = FALSE);这个函数,具体你可以用MSDN或百度搜索CEdit,在百度百科里应该有很多接口的,你看着用就行了

回答2:

char str[10];
sprintf(str, "%d", number);
CWnd* p = GetDlgItem(ID_XX);
p->SetWindowText(str);

回答3:

举例子~
#include
#include
#include

srand(time(NULL));
for(int i=IDC_EDIT1;i{
SetDlgItemInt(this->m_hWnd, //窗口句柄
i,       //单个文本框ID
(UINT)rand()%9,  //产生9以内的随机数
NULL); //NULL
}