本文介绍了在另一个项目中打开隐藏表单的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 我在解决方案中有多个项目 StartUpProject引用ProjectSub1和ProjectSub2。 I想要在ProjectSub1中打开主窗体并在StartUpProject中隐藏窗体。 这样可以正常使用: 隐藏() Dim frm 作为 新 ProjectSub1.START_MainMenu() frm.WindowState = FormWindowState.Maximized frm.Show() 现在我在StartUpProject中隐藏StartScreen 当我关闭表单ProjectSub1.START_MainMenu()时需要再次显示它。 StartUpProject.StartScreen.Show()不起作用,因为你无法从ProjectSub1引用回StartUpProject。 基本上我想在不同的项目中显示一个表单显示,隐藏上一个表格,当我完成时我想通过笑回到那个表格再次甩开 我该怎么做??? 解决方案 I have multiple project in a solutionStartUpProject references to ProjectSub1 and ProjectSub2.I want to open the main form in ProjectSub1 and hide the form in StartUpProject.This works fine using:Hide()Dim frm As New ProjectSub1.START_MainMenu()frm.WindowState = FormWindowState.Maximizedfrm.Show()Now I hide the StartScreen in StartUpProjectI need to show it again when I close the form ProjectSub1.START_MainMenu()StartUpProject.StartScreen.Show() does not work because the you cannot reference back from ProjectSub1 to StartUpProject.Basically I want to show a form in a different project and while showing, hide the previous form, when I finished I want to return to that form by showing it againHow do I do this??? 解决方案 这篇关于在另一个项目中打开隐藏表单的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 09-09 04:31