0

フォームの onLoad の名前を変更する方法を知っている人はいますか? 私は試した:

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

しかし、うまくいきません。

4

1 に答える 1

1

これを使用する必要があります->Text = x; これではない->Name = x;

于 2012-07-21T17:23:16.997 に答える