方法:
str.Format(_T("%.3g"),dNumber);
代码实现:
//保护层厚度、直径、宽度、高度
str.Format(_T("%.3g"),data.GetCovering());
m_EditCovering.SetWindowText(str);
str.Format(_T("%.3g"),data.GetDiameter());
m_EditDiameter.SetWindowText(str);
str.Format(_T("%.3g"),data.GetHeight());
m_EditHeight.SetWindowText(str);
str.Format(_T("%.3g"),data.GetWidth());
m_EditWidth.SetWindowText(str);
效果: