在c#.net的相同解决方案下,从不同项目打开和关闭

时间:2016-08-08 05:14:41

标签: c# winforms

我在C#.net的相同解决方案下有2个项目 我们称之为project1和project2。我有一个项目1已经开放。 当我点击project1上的一个按钮时,它将转到project2。

//using this code
var project2= new project2();
project2.Show();
this.Hide();

但我仍然无法做到。任何人都可以建议我该怎么做?

1 个答案:

答案 0 :(得分:0)

        for (int i = 0; i < gridView1.RowCount; i++)
        {
            string genre = gridView1.GetDataRow(i)["genre"].ToString();

            // Check if the genre already existed or not
            if (!comboBox1.Items.Contains(genre))
            {
                comboBox1.Items.Add(genre);
            }
        }

我也检查你的版本,它也有效

string exePath = @"C:\Project2\bin\Debug\Project2.exe";// Your exe path
Process.Start(exePath);
this.Hide();