如何从 app.xaml.cs 本身获取我的应用程序的运行路径?
最佳答案
你可以试试
Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location)
AppDomain.CurrentDomain.BaseDirectory
和/或
Environment.CurrentDirectory
关于wpf - 在 App.xaml.cs 中获取应用程序运行路径,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/1392243/