本文介绍了任何人都可以建议我将值Form1传递给Form2。的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 我尝试将工作代码传递给另一个表单。 第一个项目已经显示Form1和Form2。 工具。 Form1有Button1,Button2。 Form2只有label1。 //访问修饰符是公共的。 当按下Button1时,我想显示Form2。 //我能做到。 现在,Form2已经显示了。 然后按下Button2,我想让make label1隐藏。 //我试过了,但确实无法工作。 我在下面尝试过这个。它没有发生。 在Button2中,我在下面写这个。 Form2 f2 = new Form2(); f2.label1.Hide(); 但是当我按下Button2时,它没有发生。 任何人都可以提出建议。 .... #Window表格申请。解决方案 I tried passing the code for work to another form.The first the project already show Form1 and Form2.Tools.Form1 have Button1 ,Button2.Form2 only have label1. // access modifier is public.When press Button1, I want to show Form2. // I can do.Now, Form2 is already show.Then press Button2, I want make label1 hide. // I tried, but does'n work.I tried this below. It's not happening.In Button2,I write this below.Form2 f2 = new Form2();f2.label1.Hide();But when i press Button2, It's not happening.Can anyone suggest please.....#Window Form Application. 解决方案 这篇关于任何人都可以建议我将值Form1传递给Form2。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 10-30 00:03