Beispiel #1
0
        /// <summary>
        /// Occurs during apply changes operations and is overrideable in subclasses
        /// </summary>
        protected virtual void OnApplyChanges()
        {
            _rasterCategoryControl.ApplyChanges();

            if (ChangesApplied != null)
            {
                ChangesApplied(_layer, EventArgs.Empty);
            }
        }
Beispiel #2
0
        /// <summary>
        /// Occurs during apply changes operations and is overrideable in subclasses.
        /// </summary>
        protected virtual void OnApplyChanges()
        {
            _rasterCategoryControl.ApplyChanges();

            ChangesApplied?.Invoke(_layer, EventArgs.Empty);
        }