public ICommand OpenAppLocation { get; set; }
public ICommand OpenRegLocation { get; set; }
public StartupAppsVM()
{
OpenAppLocation = new RelayCommand(OpenAppLocationCommand);
OpenRegLocation = new RelayCommand(OpenRegLocationCommand);
LoadStartupApps();
}