How to get a WPF rich textbox into a string

前端 未结 1 380
清酒与你
清酒与你 2021-01-17 19:50

I saw how to set a WPF rich text box in RichTextBox Class.

Yet I like to save its text to the database like I used to, in Windows Forms.

str         


        
相关标签:
1条回答
  • 2021-01-17 20:05

    At the bottom of the MSDN RichTextBox reference there's a link to How to Extract the Text Content from a RichTextBox

    It's going to look like this:

    public string RichTextBoxExample()
    {
        RichTextBox myRichTextBox = new RichTextBox();
    
        // Create a FlowDocument to contain content for the RichTextBox.
        FlowDocument myFlowDoc = new FlowDocument();
    
        // Add initial content to the RichTextBox.
        myRichTextBox.Document = myFlowDoc;
    
        // Let's pretend the RichTextBox gets content magically ... 
    
        TextRange textRange = new TextRange(
            // TextPointer to the start of content in the RichTextBox.
            myRichTextBox.Document.ContentStart, 
            // TextPointer to the end of content in the RichTextBox.
            myRichTextBox.Document.ContentEnd
        );
    
        // The Text property on a TextRange object returns a string
        // representing the plain text content of the TextRange.
        return textRange.Text;
    }
    
    0 讨论(0)
提交回复
热议问题