在加载MSVisual c ++时重命名表单

时间:2012-07-21 16:00:00

标签: c++ visual-studio-2010 forms c++-cli rename

有人知道如何重命名形式onLoad? 我试过了:

private: System::Void General_Load(System::Object^  sender, System::EventArgs^  e) {
         String^ test = "test";
         String^ x= "General: " + test;
         this->Name = x;
         }

但它不起作用。

1 个答案:

答案 0 :(得分:1)

我应该使用这个 - > Text = x;不是这个 - > Name = x;