Microsoft.WindowsAzure.CAT.ServiceBusExplorer.ListenerControl.textBox_GotFocus C# (CSharp) Method

textBox_GotFocus() private static method

private static textBox_GotFocus ( object sender, EventArgs e ) : void
sender object
e EventArgs
return void
        private static void textBox_GotFocus(object sender, EventArgs e)
        {
            var textBox = sender as TextBox;
            if (textBox != null)
            {
                HideCaret(textBox.Handle);
            }
        }
ListenerControl