ComponentFactory.Krypton.Toolkit.PaletteBase.PaletteBase C# (CSharp) Method

PaletteBase() public method

Initialize a new instance of the PaletteBase class.
public PaletteBase ( ) : System
return System
        public PaletteBase()
        {
            // We need to notice when system color settings change
            SystemEvents.UserPreferenceChanged += new UserPreferenceChangedEventHandler(OnUserPreferenceChanged);

            // Inherit means we need to calculate the value next time it is requested
            _dragFeedback = PaletteDragFeedback.Inherit;
        }
PaletteBase