MFC编辑控件更新 [英] MFC edit control update

查看:180
本文介绍了MFC编辑控件更新的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我尝试更新一个编辑控制的文本,使用它的添加变量,这是一个 CString 但我失败了。

I try to update an edit control's text, using it's added variable, which is a CString but i'm failing it.

m_sNrAuto = "some text";  
UpdateData(TRUE);



<但编辑控件保持为空。我知道我可以使用 SetWindowText(),但我也看到了一些片段 SetWindowText()它不是使用,更新是通过将值传递给附属CString来完成的。

I also tried using UpdateWindow(), but the edit control remains blank. I know i can do it by using SetWindowText(), but i also saw some snippets where SetWindowText() it's not used, the update is done by passing a value to an affiliated CString.

推荐答案

尝试 UpdateData(false);


  • true 表示Control =>数据

  • true means Control=>Data

false 表示Data => Control

false means Data=>Control

有时您必须执行

UpdateData(true);  // snapshot ALL controls data
m_sNrAuto = "some text";  // tweak the one you actually need updated
UpdateData(false);  // this pushes ALL data, not just the one you tweaked

这篇关于MFC编辑控件更新的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆