ComponentFactory.Krypton.Toolkit.KryptonPaletteImagesRadioButton.KryptonPaletteImagesRadioButton C# (CSharp) Метод

KryptonPaletteImagesRadioButton() публичный Метод

Initialize a new instance of the KryptonPaletteImagesRadioButton class.
public KryptonPaletteImagesRadioButton ( PaletteRedirect redirect, NeedPaintHandler needPaint ) : System
redirect PaletteRedirect Redirector to inherit values from.
needPaint NeedPaintHandler Delegate for notifying paint requests.
Результат System
        public KryptonPaletteImagesRadioButton(PaletteRedirect redirect,
                                               NeedPaintHandler needPaint)
        {
            // Store the redirector
            _redirect = redirect;

            // Store the provided paint notification delegate
            NeedPaint = needPaint;

            // Create the storage
            _common = null;
            _uncheckedDisabled = null;
            _uncheckedNormal = null;
            _uncheckedTracking = null;
            _uncheckedPressed = null;
            _checkedDisabled = null;
            _checkedNormal = null;
            _checkedTracking = null;
            _checkedPressed = null;
        }