自动突出显示文本框控件中的文本

问题描述 投票:34回答:16

当控件获得焦点时,如何在文本框控件中自动突出显示文本。

c# textbox
16个回答
50
投票

在Windows窗体和WPF中:

textbox.SelectionStart = 0;
textbox.SelectionLength = textbox.Text.Length;

0
投票

在事件“输入”(例如:按Tab键)或“首次点击”时,将选择所有文本。 dotNET 4.0

public static class TbHelper
{
    // Method for use
    public static void SelectAllTextOnEnter(TextBox Tb)
    {
        Tb.Enter += new EventHandler(Tb_Enter);
        Tb.Click += new EventHandler(Tb_Click);
    }

    private static TextBox LastTb;

    private static void Tb_Enter(object sender, EventArgs e)
    {
        var Tb = (TextBox)sender;
        Tb.SelectAll();
        LastTb = Tb;
    }

    private static void Tb_Click(object sender, EventArgs e)
    {
        var Tb = (TextBox)sender;
        if (LastTb == Tb)
        {
            Tb.SelectAll();
            LastTb = null;
        }
    }
}

0
投票

我不知道为什么没有人提到这一点,但你也可以这样做,它对我有用

textbox.Select(0, textbox.Text.Length)

0
投票

你可以使用这个,简洁。 :d

TextBox1.Focus();    
TextBox1.Select(0, TextBox1.Text.Length);

0
投票
 textBoxX1.Focus();
 this.ActiveControl = textBoxX1;
 textBoxX1.SelectAll();

0
投票

在窗口形式c#。如果您使用Enter事件,它将无法正常工作。尝试使用MouseUp事件

    bool FlagEntered;
    private void textBox1_MouseUp(object sender, MouseEventArgs e)
    {
        if ((sender as TextBox).SelectedText == "" && !FlagEntered)
        {
            (sender as TextBox).SelectAll();
            FlagEntered = true;
        }
    }

    private void textBox1_Leave(object sender, EventArgs e)
    {
        FlagEntered = false;
    }

0
投票

如果你想在“On_Enter Event”上选择全部,这将无法帮助你实现目标。尝试使用“On_Click事件”

    private void textBox_Click(object sender, EventArgs e)
    {
        textBox.Focus();
        textBox.SelectAll();
    }

-1
投票
textbox.Focus();
textbox.SelectionStart = 0;
textbox.SelectionLength = textbox.Text.Length;

9
投票

在asp.net中:

textBox.Attributes.Add("onfocus","this.select();");

9
投票

如果要为整个WPF应用程序执行此操作,可以执行以下操作: - 在App.xaml.cs文件中

    protected override void OnStartup(StartupEventArgs e)
    {
        //works for tab into textbox
        EventManager.RegisterClassHandler(typeof(TextBox),
            TextBox.GotFocusEvent,
            new RoutedEventHandler(TextBox_GotFocus));
        //works for click textbox
        EventManager.RegisterClassHandler(typeof(Window),
            Window.GotMouseCaptureEvent,
            new RoutedEventHandler(Window_MouseCapture));

        base.OnStartup(e);
    }
    private void TextBox_GotFocus(object sender, RoutedEventArgs e)
    {
        (sender as TextBox).SelectAll();
    }

    private void Window_MouseCapture(object sender, RoutedEventArgs e)
    {
        var textBox = e.OriginalSource as TextBox;
        if (textBox != null)
             textBox.SelectAll(); 
    }

5
投票

如果您打算通过鼠标单击突出显示文本框中的文本,则可以通过添加以下内容来简化:

this.textBox1.Click += new System.EventHandler(textBox1_Click);

在:

partial class Form1
{
    private void InitializeComponent()
    {

    }
}

其中textBox1是位于Form1中的相关文本框的名称

然后创建方法定义:

void textBox1_Click(object sender, System.EventArgs e)
{
    textBox1.SelectAll();
}

在:

public partial class Form1 : Form
{

}

4
投票

使用内置方法SelectAll很容易实现

只需凑可以写这个:

txtTextBox.Focus();
txtTextBox.SelectAll();

并且将选择textBox中的所有内容:)


3
投票

我认为最简单的方法是在Enter事件中使用TextBox.SelectAll

private void TextBox_Enter(object sender, EventArgs e)
{
    ((TextBox)sender).SelectAll();
}

2
投票

这是我一直在使用的代码。它需要将附加属性添加到您希望自动选择的每个文本框中。因为我不希望我的应用程序中的每个文本框都这样做,这对我来说是最好的解决方案。

public class AutoSelectAll
{
    public static bool GetIsEnabled(DependencyObject obj) 
    { 
        return (bool)obj.GetValue(IsEnabledProperty); 
    } 
    public static void SetIsEnabled(DependencyObject obj, bool value) 
    { 
        obj.SetValue(IsEnabledProperty, value);
    }

    static void ue_Loaded(object sender, RoutedEventArgs e)
    {
        var ue = sender as FrameworkElement;
        if (ue == null)
            return;
        ue.GotFocus += ue_GotFocus;
        ue.GotMouseCapture += ue_GotMouseCapture;
    }

    private static void ue_Unloaded(object sender, RoutedEventArgs e)
    {
        var ue = sender as FrameworkElement;
        if (ue == null)
            return;
        //ue.Unloaded -= ue_Unloaded;
        ue.GotFocus -= ue_GotFocus;
        ue.GotMouseCapture -= ue_GotMouseCapture;
    }

    static void ue_GotFocus(object sender, RoutedEventArgs e)
    {
        if (sender is TextBox)
        {
            (sender as TextBox).SelectAll();
        }
        e.Handled = true;
    }

    static void ue_GotMouseCapture(object sender, MouseEventArgs e)
    {
        if (sender is TextBox)
        {
            (sender as TextBox).SelectAll();
        }
        e.Handled = true;
    }

    public static readonly DependencyProperty IsEnabledProperty = DependencyProperty.RegisterAttached("IsEnabled", typeof(bool),
        typeof(AutoSelectAll), new UIPropertyMetadata(false, IsEnabledChanged));

    static void IsEnabledChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
    {
        var ue = d as FrameworkElement;
        if (ue == null)
            return;
        if ((bool)e.NewValue)
        {
            ue.Unloaded += ue_Unloaded;
            ue.Loaded += ue_Loaded;
        }
    }
} 

我在这里做的主要改变是为我见过的许多例子添加了一个加载的事件。这允许代码在卸载后继续工作(即更改选项卡)。此外,我还包括代码,以确保在使用鼠标单击文本框时选中文本,而不仅仅是键盘对焦。注意:如果您实际单击文本框中的文本,则光标将插入字母之间。

您可以通过在xaml中包含以下标记来使用它。

<TextBox  
    Text="{Binding Property}"
    Library:AutoSelectAll.IsEnabled="True" />

1
投票

如果您需要为大量文本框(在Silverlight或WPF中)执行此操作,则可以使用博客文章中使用的技术:http://dnchannel.blogspot.com/2010/01/silverlight-3-auto-select-text-in.html。它使用附加属性和路由事件。


1
投票

如果您只想在用户第一次单击框中时选择所有文本,然后让它们在文本中间单击,如果需要,这就是我最终使用的代码。

只是处理FocusEnter事件不起作用,因为Click事件后来发生,如果你在Focus事件中SelectAll(),则覆盖选择。

private bool isFirstTimeEntering;
private void textBox_Enter(object sender, EventArgs e)
{
    isFirstTimeEntering = true;
}

private void textBox_Click(object sender, EventArgs e)
{
    switch (isFirstTimeEntering)
    {
        case true:
            isFirstTimeEntering = false;
            break;
        case false:
            return;
    }

    textBox.SelectAll();
    textBox.SelectionStart = 0;
    textBox.SelectionLength = textBox.Text.Length;
}
© www.soinside.com 2019 - 2024. All rights reserved.