有人知道如何重命名形式onLoad? 我试过了:
private: System::Void General_Load(System::Object^ sender, System::EventArgs^ e) {
String^ test = "test";
String^ x= "General: " + test;
this->Name = x;
}
但它不起作用。
答案 0 :(得分:1)
我应该使用这个 - > Text = x;不是这个 - > Name = x;