XPTable.Models.Table.scrollBar_GotFocus C# (CSharp) Method

scrollBar_GotFocus() private method

Handler for a ScrollBars GotFocus event
private scrollBar_GotFocus ( object sender, EventArgs e ) : void
sender object The object that raised the event
e EventArgs An EventArgs that contains the event data
return void
        private void scrollBar_GotFocus(object sender, EventArgs e)
        {
            // don't let the scrollbars have focus
            // (appears to slow scroll speed otherwise)
            this.Focus();
        }
Table