Top "Flowdocument" questions

Microsoft's WPF FlowDocument technology allows to render embedded, dynamically adjusted and re-flowing document content that supports columns, pagination and search.

How to show a flow document using a DocumentViewer?

I have a simple flow document in my resources, FlowDocument1.xaml: <FlowDocument xmlns="http://schemas.microsoft.com/winfx/2006/xaml/…

wpf xaml flowdocument documentviewer
WPF RichTextBox - ScrollToEnd() method does not cause any scrolling to occur

The RichTextBox component in my WPF app is populated using a FlowDocument and the RichTextBox's Document property. rtb.ScrollToEnd(); doesn't …

c# wpf scroll richtextbox flowdocument
Single line borders in FlowDocument Tables

I have a FlowDocument table where I want to spice up the layout a bit. I'm thinking something like a …

wpf flowdocument
Setting WPF text to TextBlock

I know that TextBlock can present a FlowDocument, for example: <TextBlock Name="txtFont"> <Run Foreground="Maroon" FontFamily="…

c# wpf xaml textblock flowdocument
Inserting an HTML fragment into a WPF FlowDocument

I'm dynamically building a WPF FlowDocument from a datasource. One of the data elements is a fragment of HTML - …

html wpf xaml flowdocument
How to set the original width of a WPF FlowDocument

I have this XAML structure: <wft:Dialog x:Class="WFT.PumpSvc.Bench.Parts.PartsPullListDialog" xmlns="http://schemas.microsoft.com/…

wpf xaml flowdocument
C# FlowDocument to HTML conversion

Basically, I have a RichTextBox and I want to convert the formatted contents of it to HTML so it can …

c# wpf richtextbox flowdocument
Detect if a RichTextBox is empty

What is the best way to detect if a WPF RichTextBox/FlowDocument is empty? The following works if only text …

wpf richtextbox flowdocument
Add Table to FlowDocument In Code Behind

I have tried this..... _doc = new FlowDocument(); Table t = new Table(); for (int i = 0; i < 7; i++) { t.Columns.Add(…

c# wpf flowdocument
How can I get a FlowDocument Hyperlink to launch browser and go to URL in a WPF app?

The following code in a WPF app creates a hyperlink that looks and acts like a hyperlink, but doesn't do …

c# wpf hyperlink flowdocument