IO-233 2 Way Paint Scale.

This commit is contained in:
Patrick Fic
2022-04-28 09:46:47 -07:00
parent 1a1cc67402
commit 6eff2dbb31
15 changed files with 277 additions and 23 deletions

View File

@@ -202,6 +202,22 @@ namespace BodyshopPartner.ViewModels
}
}
private ICommand _browseForPaintScaleImportPathCommand;
public ICommand BrowseForPaintScaleImportPathCommand
{
get
{
if (_browseForPaintScaleImportPathCommand == null)
{
_browseForPaintScaleImportPathCommand = new RelayCommand(
p => true,
p => BrowseForPaintScaleImportPath()
);
}
return _browseForPaintScaleImportPathCommand;
}
}
private ICommand _configurePaintScaleCommand;
public ICommand ConfigurePaintScaleCommand
{