ARMS Uploader

This commit is contained in:
Patrick Fic
2022-02-07 13:31:51 -08:00
parent 1221f35162
commit c936d354b2
16 changed files with 440 additions and 175 deletions

View File

@@ -256,6 +256,19 @@ namespace BodyshopPartner.ViewModels
}
}
public void BrowseForArmsPath()
{
var dialog = new Ookii.Dialogs.Wpf.VistaFolderBrowserDialog();
dialog.SelectedPath = Properties.Settings.Default.ArmsExportPath;
if (dialog.ShowDialog().GetValueOrDefault())
{
Properties.Settings.Default.ArmsExportPath = dialog.SelectedPath;
Properties.Settings.Default.Save();
}
}
public void StopAllFolderMonitors()
@@ -362,7 +375,8 @@ namespace BodyshopPartner.ViewModels
public void ConfigurePaintScale()
{
Utils.PaintScaleConfig.RegisterScheduledTask();
Utils.ScheduledTaskConfig.RegisterPaintScale();
}
}
}