Example #1
0
        public LayerHintsDialogViewModel(Layer layer, IRgbService rgbService, ILayerHintVmFactory vmFactory, IProfileEditorService profileEditorService)
        {
            _rgbService           = rgbService;
            _vmFactory            = vmFactory;
            _profileEditorService = profileEditorService;

            Layer       = layer;
            DisplayName = "Layer hints | Artemis";
        }
Example #2
0
 public LayerViewModel(ProfileElement layer,
                       IRgbService rgbService,
                       IProfileEditorService profileEditorService,
                       IDialogService dialogService,
                       IProfileTreeVmFactory profileTreeVmFactory,
                       ILayerBrushService layerBrushService,
                       IWindowManager windowManager,
                       ILayerHintVmFactory vmFactory) :
     base(layer, rgbService, profileEditorService, dialogService, profileTreeVmFactory, layerBrushService)
 {
     _windowManager = windowManager;
     _vmFactory     = vmFactory;
 }