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

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

Initialize a new instance of the ButtonSpecCalendar class.
public ButtonSpecCalendar ( ViewDrawMonth month, PaletteButtonSpecStyle fixedStyle, RelativeEdgeAlign edge ) : System
month ViewDrawMonth Reference to owning view.
fixedStyle PaletteButtonSpecStyle Fixed style to use.
edge RelativeEdgeAlign Alignment edge.
Результат System
        public ButtonSpecCalendar(ViewDrawMonth month,
                                  PaletteButtonSpecStyle fixedStyle,
                                  RelativeEdgeAlign edge)
        {
            Debug.Assert(month != null);

            // Remember back reference to owning navigator.
            _month = month;
            _edge = edge;
            _enabled = true;
            _visible = true;

            // Fix the type
            ProtectedType = fixedStyle;
        }