获取应用程序所在目录

Posted on 2019-01-07 22:49  努力成长静待花开  阅读(114)  评论(0编辑  收藏  举报

实现效果:

  

知识运用:
  Application类的StartupPath属性

  public static string StartupPath {get;}

实现代码:

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