Evbpc.Framework.Windows.Forms.Form.Select C# (CSharp) Method

Select() protected method

Selects this form, and optionally selects the next or previous control.
https://msdn.microsoft.com/en-us/library/sh071987(v=vs.110).aspx
protected Select ( bool directed, bool forward ) : void
directed bool If set to true that the active control is changed
forward bool If directed is true, then this controls the direction in which focus is moved. If this is true, then the next control is selected; otherwise, the previous control is selected.
return void
        protected override void Select(bool directed, bool forward)
        {
            Activate();
            SetTopLevel(true);
        }