ComponentFactory.Krypton.Toolkit.MonthCalendarController.GotFocus C# (CSharp) Method

GotFocus() public method

Source control has lost the focus.
public GotFocus ( Control c ) : void
c System.Windows.Forms.Control Reference to the source control instance.
return void
        public virtual void GotFocus(Control c)
        {
            Debug.Assert(c != null);

            // Validate incoming references
            if (c == null) throw new ArgumentNullException("c");
        }