と を含む Windows フォーム ( 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.
}