1234567891011121314151617181920212223242526272829 |
- using PixiEditor.Helpers;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace PixiEditor.Models.Tools
- {
- class ToolManager : NotifyableObject
- {
- private ToolType _activeTool;
- public ToolType ActiveTool
- {
- get { return _activeTool; }
- set
- {
- if (_activeTool != value)
- {
- _activeTool = value;
- RaisePropertyChanged("ActiveTool");
- }
- }
- }
- }
- }
|