无法访问表单标签文字

时间:2015-05-07 15:39:25

标签: c++

如何更改标签文字?通过提示我从c ++得到的东西是dosnt工作

int main(array<System::String ^> ^args)
{
    // Enabling Windows XP visual effects before any controls are created
    Application::EnableVisualStyles();
    Application::SetCompatibleTextRenderingDefault(false); 

    // Create the main window and run it
    Application::Run(gcnew Form1());

    Form1().label1->Text = "TEST"; //How to change label text?

    return 0;
}

1 个答案:

答案 0 :(得分:0)

在您编写的Form1类的构造函数或Load事件中执行此操作。保持此代码不变(即不要更改此处的任何属性)。表格或任何控件的属性不应从main函数(理想情况下)更改。