我需要在 CEdit 控制的编辑控制框中显示文本以及变量值。我该怎么做 ?目前我正在使用 SetWindowText(),但这只需要一个字符串...如何获取格式化字符串以显示在编辑控件中?
示例: printf("The answer is %d\n",ans) -> 如何在编辑控件中打印相同的消息?
我需要在 CEdit 控制的编辑控制框中显示文本以及变量值。我该怎么做 ?目前我正在使用 SetWindowText(),但这只需要一个字符串...如何获取格式化字符串以显示在编辑控件中?
示例: printf("The answer is %d\n",ans) -> 如何在编辑控件中打印相同的消息?
使用 CString 的Format成员。
CString text;
text.Format(_T("The answer is %d\n"), ans);
edit.SetWindowText(text);