小编典典

从WPF应用程序获取应用程序的目录

c#

我找到了带有AppDomain的Windows窗体的解决方案,但是WPF Application对象的等效项是什么?


阅读 351

收藏
2020-05-19

共1个答案

小编典典

一种方法:

System.AppDomain.CurrentDomain.BaseDirectory

另一种方法是:

System.IO.Path.GetDirectoryName(System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName)
2020-05-19