public CalculatorPropSet(IPropSetCalculator calculator)
        {
            if (calculator == null)
            {
                throw new ArgumentNullException();
            }

            _calculator = calculator;
        }
Beispiel #2
0
        public BindedPropSet(IPropContainer propSource, IPropSetCalculator calculator) : base(calculator)
        {
            if (propSource == null)
            {
                throw new ArgumentNullException();
            }

            _propSource         = propSource;
            _propSource.Change += OnPropSourceChange;
        }
 public EditablePropSet(IPropSetCalculator calculator) : base(calculator)
 {
 }