我有一个窗口窗体( Form1.h
),有 button
和 TextBox
。当窗体初始化时, TextBox
是空的。单击按钮时,窗体外的一种方法被调用,它应该更新 TextBox
。我如何从非窗体类别更新 TextBox
?下面是我的样本代码:
// Form1.h
private: System::Void findResultButton_Click(System::Object^ sender, System::EventArgs^ e) {
FirstResults* firstResults = new FirstResults();
firstResults->findResult();
}
// FirstResults.cpp
void FirstResults::findResult() {
// do some calculations here and find result.
// write the result value to a .txt file.
// Update TextBox in Form1.h with result value.
}