mfc中如何显示数据到编辑框以及如何获取编辑框中的数值

1:获取编辑框的数值:GetDlgItemInt(IDC_EDIT2)

例子:int a = GetDlgItemInt(hwndDlg,IDC_a,NULL,TRUE);///注释:用GetDlgItemInt函数获取hwndDlg窗口中的IDC_a控件中输入的整数值并赋给变量a。

  •  UpdateData(TRUE); 
  • CString Str_pos;
  •     m_PlanPosition.GetWindowText(Str_pos);m_PlanPosition类型为Cedit
  •     long m_position=_ttol(Str_pos);//将字符串转成长整型,类似,可以将字符串型转成需要的。

 

2:将数据显示到编辑框中:

法一:此时编辑框关联的变量类型为CEdit时

int i =  GetDlgItemInt(IDC_EDIT2);
CString str;
str.Format("%d", i);
m_edit2.SetWindowText(str);

法二:当编辑框变量为非CEdit类型 时 m_string=" 2";UpdateData(false);///此时是将2赋给编辑框

你可能感兴趣的:(MFC)