限制多行文本框中的行长

时间:2019-04-04 00:13:28

标签: c# wpf

我需要限制用户可以输入到多行文本框中的单行字符数。我有一个函数可以对输入的数据执行此操作,但不能对剪切和粘贴的数据执行此操作。

我尝试使用子字符串将文本框读入数组,然后复制回文本字符串,但是此代码(发布)引发异常。

private void LongLine_TextChanged(object sender, TextChangedEventArgs e)
    {
        int lineCount = 
 ((System.Windows.Controls.TextBox)sender).LineCount;
        //string newText = "";
        for (int i = 0; i < lineCount; i++)
        {
            if 
    (((System.Windows.Controls.TextBox)sender).GetLineLength(i) > 20)
            {
                string textString = ((System.Windows.Controls.TextBox)sender).Text;
                string[] textArray = Regex.Split(textString, "\r\n");
                textString = "";
                for (int k =0; k < textArray.Length; k++)
                {
                    String textSubstring = textArray[k].Substring(0, 20);
                    textString += textSubstring;
                }
                ((System.Windows.Controls.TextBox)sender).Text = textString;
            }
        }
        e.Handled = true;
    }

1 个答案:

答案 0 :(得分:0)

这符合您的要求:

当您键入内容以及粘贴或更改文本时,它会截断长度超过20的任何行的结尾。

private void TextBox_TextChanged(object sender, TextChangedEventArgs e)
{
    const int MAX_LINE_LENGTH = 20;
    var textbox = sender as TextBox;
    var exceedsLength = false;
    // First test if we need to modify the text
    for (int i = 0; i < textbox.LineCount; i++)
    {
        if (textbox.GetLineLength(i) > MAX_LINE_LENGTH)
        {
            exceedsLength = true;
            break;
        }
    }
    if (exceedsLength)
    {
        // Split the text into lines
        string[] oldTextArray = textbox.Text.Split(new[] { Environment.NewLine }, StringSplitOptions.None);
        var newTextLines = new List<string>(textbox.LineCount);
        for (int k = 0; k < oldTextArray.Length; k++)
        {
            // truncate each line
            newTextLines.Add(string.Concat(oldTextArray[k].Take(MAX_LINE_LENGTH)));
        }
        // Save the cursor position
        var cursorPos = textbox.SelectionStart;
        // To avoid the text change calling back into this event, detach the event while setting the Text property
        textbox.TextChanged -= TextBox_TextChanged;
        // Set the new text
        textbox.Text = string.Join(Environment.NewLine, newTextLines);
        textbox.TextChanged += TextBox_TextChanged;
        // Restore the cursor position
        textbox.SelectionStart = cursorPos;
        // if at the end of the line, the position will advance automatically to the next line, supress that
        if (textbox.SelectionStart != cursorPos)
        {
            textbox.SelectionStart = cursorPos - 1;
        }
    }
    e.Handled = true;
}