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

ButtonSpecFormFixed() public method

Initialize a new instance of the ButtonSpecFormFixed class.
public ButtonSpecFormFixed ( KryptonForm form, PaletteButtonSpecStyle fixedStyle ) : System
form KryptonForm Reference to owning krypton form.
fixedStyle PaletteButtonSpecStyle Fixed style to use.
return System
        public ButtonSpecFormFixed(KryptonForm form,
                                   PaletteButtonSpecStyle fixedStyle)
        {
            Debug.Assert(form != null);

            // Remember back reference to owning navigator.
            _form = form;

            // Fix the type
            ProtectedType = fixedStyle;
        }
ButtonSpecFormFixed