Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何Form1.h从文件中访问(在 Windows 窗体上)中的文本框.cpp?
Form1.h
.cpp
我希望当用户按下表单上的按钮时,一些文本会添加到同一表单上的文本框中。当按下按钮时,我想在.cpp文件中调用一个类,该类将(经过一些计算等等)向文本框添加一些文本。
我一直试图弄清楚这一点,但无济于事。
有人愿意分享我如何做到这一点吗?
任何帮助,将不胜感激。
如果 cpp 文件用于 Form1 #include "Form1.h",则this->textBox.
#include "Form1.h"
this->textBox
如果 cpp 文件用于另一个类,则需要传递对 Form1 对象或 TextBox 的引用。可能在类的构造函数中传递它是最简单的方法。如果您决定传递 Form1 对象,请执行相同的 #include。如果您决定只传递 TextBox,请不要忘记执行using namespace.
using namespace