Multiline issue WPF TextBox

2019-06-21 23:27发布

I creating multiline TextBox with this Link its work better but if I want to set TextBox text counter

label1.Content = textBox1.Text.Length;

with above line work fine but problem is that when I press enter in the TextBox counter it will increase 2 characters in TextBox counter.

How can I do this task please help me.

Any help appreciated!

4条回答
别忘想泡老子
2楼-- · 2019-06-21 23:46

if you need just one character on "Enter" then you can just handle PreviewKeyDown event on TextBox and paste following handler:

    private void Txt_OnPreviewKeyDown(object sender, KeyEventArgs e)
    {
        if (e.Key == Key.Enter)
        {
            var txtBox = e.Source as TextBox;
            var selectionStart = txtBox.SelectionStart;
            txtBox.Text = txtBox.Text.Insert(selectionStart, "\n");
            txtBox.Select(selectionStart + 1, 0);
            e.Handled = true;  
        }
    }
查看更多
做个烂人
3楼-- · 2019-06-21 23:51

Use the code below instead of label1.Content = textBox1.Text.Length;

label1.Text = textBox1.Text.Replace(Environment.NewLine, "").Length.ToString();

Please don't forget to add using System.Text;

查看更多
放我归山
4楼-- · 2019-06-21 23:54

Andrey Gordeev's answer is right (+1 for him) but does not provide a direct solution for your problem. If you check the textBox1.Text string with the debugger you would see the referred \r\n characters. On the other hand, if you intend to affect them directly (via .Replace, for example), you wouldn't get anything.

Thus, the practical answer to your question is: rely on Environment.NewLine. Sample code:

label1.Content = textBox1.Text.Replace(Environment.NewLine, "").Length;
查看更多
走好不送
5楼-- · 2019-06-22 00:03

That's because newline is presented by two symbols: \r and \n

Related question: What is the difference between \r and \n?

查看更多
登录 后发表回答