Making a WinForms TextBox behave like your browser's address bar

When a C# WinForms textbox receives focus, I want it to behave like your browser's address bar.

To see what I mean, click in your web browser's address bar. You'll notice the following behavior:

  • Clicking in the textbox should select all the text if the textbox wasn't previously focused.
  • Mouse down and drag in the textbox should select only the text I've highlighted with the mouse.
  • If the textbox is already focused, clicking does not select all text.
  • Focusing the textbox programmatically or via keyboard tabbing should select all text.
  • I want to do exactly this in WinForms.

    FASTEST GUN ALERT: please read the following before answering! Thanks guys. :-)

    Calling .SelectAll() during the .Enter or .GotFocus events won't work because if the user clicked the textbox, the caret will be placed where he clicked, thus deselecting all text.

    Calling .SelectAll() during the .Click event won't work because the user won't be able to select any text with the mouse; the .SelectAll() call will keep overwriting the user's text selection.

    Calling BeginInvoke((Action)textbox.SelectAll) on focus/enter event enter doesn't work because it breaks rule #2 above, it will keep overriding the user's selection on focus.


    First of all, thanks for answers! 9 total answers. Thank you.

    Bad news: all of the answers had some quirks or didn't work quite right (or at all). I've added a comment to each of your posts.

    Good news: I've found a way to make it work. This solution is pretty straightforward and seems to work in all the scenarios (mousing down, selecting text, tabbing focus, etc.)

    bool alreadyFocused;
    
    ...
    
    textBox1.GotFocus += textBox1_GotFocus;
    textBox1.MouseUp += textBox1_MouseUp;
    textBox1.Leave += textBox1_Leave;
    
    ...
    
    void textBox1_Leave(object sender, EventArgs e)
    {
        alreadyFocused = false;
    }
    
    
    void textBox1_GotFocus(object sender, EventArgs e)
    {
        // Select all text only if the mouse isn't down.
        // This makes tabbing to the textbox give focus.
        if (MouseButtons == MouseButtons.None)
        {
            this.textBox1.SelectAll();
            alreadyFocused = true;
        }
    }
    
    void textBox1_MouseUp(object sender, MouseEventArgs e)
    {
        // Web browsers like Google Chrome select the text on mouse up.
        // They only do it if the textbox isn't already focused,
        // and if the user hasn't selected all text.
        if (!alreadyFocused && this.textBox1.SelectionLength == 0)
        {
            alreadyFocused = true;
            this.textBox1.SelectAll();
        }
    }
    

    As far as I can tell, this causes a textbox to behave exactly like a web browser's address bar.

    Hopefully this helps the next guy who tries to solve this deceptively simple problem.

    Thanks again, guys, for all your answers that helped lead me towards the correct path.


    I found a simpler solution to this. It involves kicking off the SelectAll asynchronously using Control.BeginInvoke so that it occurs after the Enter and Click events have occurred:

    In C#:

    private void MyTextBox_Enter(object sender, EventArgs e)
    {
        // Kick off SelectAll asyncronously so that it occurs after Click
        BeginInvoke((Action)delegate
        {
            MyTextBox.SelectAll();
        });
    }
    

    In VB.NET (thanks to Krishanu Dey)

    Private Sub MyTextBox_Enter(sender As Object, e As EventArgs) Handles MyTextBox.Enter 
        BeginInvoke(DirectCast(Sub() MyTextBox.SelectAll(), Action)) 
    End Sub
    

    Your solution is good, but fails in one specific case. If you give the TextBox focus by selecting a range of text instead of just clicking, the alreadyFocussed flag doesn't get set to true, so when you click in the TextBox a second time, all the text gets selected.

    Here is my version of the solution. I've also put the code into a class which inherits TextBox, so the logic is nicely hidden away.

    public class MyTextBox : System.Windows.Forms.TextBox
    {
        private bool _focused;
    
        protected override void OnEnter(EventArgs e)
        {
            base.OnEnter(e);
            if (MouseButtons == MouseButtons.None)
            {
                SelectAll();
                _focused = true;
            }
        }
    
        protected override void OnLeave(EventArgs e)
        {
            base.OnLeave(e);
            _focused = false;
        }
    
        protected override void OnMouseUp(MouseEventArgs mevent)
        {
            base.OnMouseUp(mevent);
            if (!_focused)
            {
                if (SelectionLength == 0)
                    SelectAll();
                _focused = true;
            }
        }
    }
    
    链接地址: http://www.djcxy.com/p/44922.html

    上一篇: 在Windows窗体应用程序中实现键盘快捷方式的最佳方法?

    下一篇: 使WinForms TextBox的行为与浏览器的地址栏类似