aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.HardwareDesigner/packages.config
blob: f571e38077c7aee7691c5f9525a0f1c730f74c01 (plain)
1
2
3
4
5
6
7
8
9
<?xml version="1.0" encoding="utf-8"?>
<packages>
  <package id="CommonServiceLocator" version="1.3" targetFramework="net46" />
  <package id="EntityFramework" version="6.0.0" targetFramework="net46" />
  <package id="Expression.Blend.Sdk" version="1.0.2" targetFramework="net46" />
  <package id="MahApps.Metro" version="1.5.0" targetFramework="net46" />
  <package id="MaterialDesignColors" version="1.1.2" targetFramework="net46" />
  <package id="MaterialDesignThemes" version="2.3.1.953" targetFramework="net46" />
</packages>
.il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.SharedUI;

namespace Tango.MachineStudio.DB.ViewModels
{
    public class MultiComboVM<T> : EntityViewModel<T>
    {
        private Action _onSelectionChanged;

        public event EventHandler SelectionChanged;

        public MultiComboVM(T entity) : base(entity)
        {

        }

        public MultiComboVM(T entity, Action onSelectionChanged) : this(entity)
        {
            _onSelectionChanged = onSelectionChanged;
        }

        private bool _isSelected;

        public bool IsSelected
        {
            get { return _isSelected; }
            set { _isSelected = value; RaisePropertyChangedAuto(); OnSelectionChanged(); }
        }

        protected virtual void OnSelectionChanged()
        {
            if (_onSelectionChanged != null)
            {
                _onSelectionChanged();
            }

            SelectionChanged?.Invoke(this, new EventArgs());
        }
    }
}