我使用Visual C ++创建Windows窗体应用程序,我有两种形式。 当我单击Form1上的按钮时,Form2打开,Form2上的Label必须可见(默认可见false)
Form ^ Dialog = gcnew Form2();
Dialog->ShowDialog();
Dialog->hideLabel->Visible(true); //this is not work. no compile project.
如何解决这个问题? 感谢。
答案 0 :(得分:0)
在显示表单前设置可见性:
Form ^ Dialog = gcnew Form2();
Dialog->hideLabel->Visible(true);
Dialog->ShowDialog();