1. 程式人生 > >獲取應用程式所在目錄

獲取應用程式所在目錄

實現效果:

  

知識運用:
  Application類的StartupPath屬性

  public static string StartupPath {get;}

實現程式碼:

        private void button1_Click(object sender, EventArgs e)
        {
            textBox1.Text = Application.StartupPath;
        }