c # wpf richtextbox выбор - PullRequest
       38

c # wpf richtextbox выбор

1 голос
/ 04 мая 2011

У меня есть RichTextBox, например, с таким фрагментом текста:

Привет, меня зовут {имя}!

Когда я помещаю курсор в скобки, я хочу, чтобы мой richtextbox выделил все слово в скобках, а также в скобках.

поэтому, когда я делаю это: ('|' - курсор)

Привет, меня зовут {n | ame}!

Я хочу выбрать '{имя}'

Как я могу это сделать?

Ответы [ 2 ]

2 голосов
/ 08 ноября 2012

Я сделал это, чтобы расширить выбор в WPF RichTextBox.Я новичок в WPF, поэтому я не знаю, является ли это лучшим способом сделать это.

    private TextRange ExtendSelection(LogicalDirection direction)
{
    TextRange tr = new TextRange(CaretPosition, CaretPosition.GetInsertionPosition(direction));
    bool found = false;
    while (!found)
    {
        if (tr == null)
        {
            break;
        }
        else
        {
            // If we are not at the end of the document (or at the beginning)
            TextPointer next = null;
            if (LogicalDirection.Forward.CompareTo(direction) == 0 && tr.End.CompareTo(Document.ContentEnd) == -1)
            {
                next = tr.End.GetNextInsertionPosition(direction);  
            }
            else if (LogicalDirection.Backward.CompareTo(direction) == 0 && tr.Start.CompareTo(Document.ContentStart) == 1)
            {
                next = tr.Start.GetNextInsertionPosition(direction);
            }

            // Be careful with boundaries!
            if (next != null)
            {
                TextRange trNext = new TextRange(CaretPosition, next);
                char[] text = trNext.Text.ToCharArray();
                for (int i = 0; i < text.Length; i++)
                {
                    if (Char.IsWhiteSpace(text[i]) || Char.IsSeparator(text[i]))
                    {
                        found = true;
                        break;
                    }
                }
                if (!found)
                {
                    tr = trNext;
                }
            }
            else
            {
                break;
            }
        }
    }
    return tr;
}

private void MyRichTextBox_PreviewMouseDoubleClick(object sender, MouseButtonEventArgs e)
{
    TextRange left = ExtendSelection(LogicalDirection.Backward);
    TextRange right = ExtendSelection(LogicalDirection.Forward);
    if (!left.IsEmpty && !right.IsEmpty)
    {
        Selection.Select(left.Start, right.End);
        Console.WriteLine("Highlight: '" + Selection.Text + "'");
    }
}
0 голосов
/ 04 мая 2011

Я пишу то, над чем вы можете работать ( код ниже работает только с одной строкой RTB ):

private void richTextBox1_PreviewMouseUp(object sender, MouseButtonEventArgs e)
{
    TextPointer oldpointer = richTextBox1.CaretPosition;  //current caret position
    int startposition = richTextBox1.Document.ContentStart.GetOffsetToPosition(richTextBox1.CaretPosition.GetPositionAtOffset(0, LogicalDirection.Forward));

    if (startposition > 2)
    {   //get RTB text     
        richTextBox1.SelectAll();
        string wholetext = richTextBox1.Selection.Text;

        //reset the caret back
        richTextBox1.CaretPosition = oldpointer;

        //split text by the caret
        string starthalf = wholetext.Substring(0, startposition - 2);
        string endhalf = wholetext.Remove(0, startposition - 2);

        //get position of "{" and "}"
        int seleStart = starthalf.LastIndexOf('{');
        int seleEnd = endhalf.IndexOf('}') < 0 ? -1 : endhalf.IndexOf('}') + starthalf.Length + 1;

        //select the pattern
        if (seleStart >= 0 && seleEnd > 0)
        {
            richTextBox1.Selection.Select(richTextBox1.Document.ContentStart.GetPositionAtOffset(seleStart + 2), richTextBox1.Document.ContentStart.GetPositionAtOffset(seleEnd + 2));
        }
    }
}
...