WPF中获取程序执行路径ExecutablePath
在C#中我们可以用Application.ExecutablePath来获得程序路径
在WPF中Application这个类没有ExecutablePath
我们可以这样用
using System.Reflection; Assembly.GetExecutingAssembly().Location;
在C#中我们可以用Application.ExecutablePath来获得程序路径
在WPF中Application这个类没有ExecutablePath
我们可以这样用
using System.Reflection; Assembly.GetExecutingAssembly().Location;