Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
2answers
2k views

Wavy underlines in a FlowDocument

In WPF, is there an easy way to add wavy underlines (like spelling errors in Word) to FlowDocument elements? There's the Underline class, but there seems to be no way to style it.
7
votes
1answer
460 views

WPF - Auto Line Number for FlowDocument?

I'm just starting on a contract generation routine for my current project and one of the requirements is that each of the lines in the contract must be numbered. The number should be located in the ...
7
votes
2answers
660 views

How to create a Xaml FlowDocument with Page Headers and Footers when rendered to XPS?

I am looking for an idea of a clean generic way to describe repeating page headers and footers in a XAML FlowDocument without any code behind. It only needs to show up correctly when rendered to XPS ...
7
votes
3answers
439 views

What are my options for document layout in WPF?

Using WPF's FlowDocument, I have run in to a number of situations where I need more control over the layout of the document, from simple things (page headers and footers) to more complex (footnotes, ...
6
votes
1answer
242 views

Implementing footnotes in a WPF FlowDocument

What would be the best approach to display footnotes for FlowDocument content in a FlowDocumentPageViewer? My first thought was to have the contents of the footnote follow immediately after the ...
6
votes
1answer
950 views

How to insert inline content from one FlowDocument into another?

I'm building an application that needs to allow a user to insert text from one RichTextBox at the current caret position in another one. I spent a lot of time screwing around with the FlowDocument's ...
5
votes
1answer
154 views

Why can't I paste text copied from a WPF FlowDocumentScrollViewer or Reader?

In a previous question I was trying to find out how to bind an ObservableCollection to a control so I could both see all the strings and select all the strings and copy them from the content control. ...
5
votes
1answer
161 views

How can I create subclass of class Inline ? (the one used in FlowDocument)

In WPF I would like to create custom Inline implementation. From documentation of Inline: "An abstract class that provides a base for all inline flow content elements." Classes like Figure, Run or ...
5
votes
2answers
140 views

What's the recommended approach to generating a Preview Thumbnail Image of the fist page of a FlowDocument

I would like to generate a small Preview Image of the fist page of a FlowDocument (imagine a Thumbnail View of a collection of FlowDocuments). Can anyone recommend a good approach for doing this?
5
votes
2answers
1k views

WPF Table Column Sizes

I'm rendering a Table in a WPF FlowDocument using code-behind. But, I've been unable to find an example that shows how to make the table use only the space needed based on content. Instead the table ...
5
votes
4answers
3k views

What is the best substitute for FlowDocument in Silverlight?

I'm porting an application from WPF to Silverlight and was saddened to read of the lack of FlowDocument support. What is the best way in Silverlight then to display text with markup? I just need the ...
5
votes
8answers
2k views

FlowDocument Memory Issue in C#

I am currently attempting to deal with an issue with releasing a FlowDocument resources. I am loading an rtf file and putting it into a FlowDocument with TextRange.Load. I noticed that after it does ...
4
votes
1answer
175 views

How to collapse a paragraph?

How can I make a Paragraph collapsible in a FlowDocument while keeping its text selectable?
4
votes
2answers
1k views

Why is this flowdocument table always printing 2 columns

I have a ListView in my WPF app that is bound to a collection of tasks to perform (A to-do list). I want the user to be able to print their list and have created the following code based on the MSDN ...
4
votes
1answer
305 views

How can I add multiple FlowDocumentReaders to a StackPanel?

Thanks to Leom's answer I was able to add a FlowDocument to a StackPanel by wrapping it in a FlowDocumentReader. But now I have two problems: it seems only the first FlowDocumentReader is added and ...
4
votes
4answers
631 views

Setting WPF text to TextBlock

I know that TextBlock can present a FlowDocument, for example: <TextBlock Name="txtFont"> <Run Foreground="Maroon" FontFamily="Courier New" FontSize="24">Courier New 24</Run> ...
4
votes
1answer
2k views

How can we show .rtf or .doc as flowdocument in WPF?

It is for the help section of the application. I am thinking to put flowdocumentReader to show the help document. But is it possible to show .rtf or any .doc to show in Flowdocument.Or is it neccesary ...
4
votes
3answers
901 views

Is there an ItemsControl equivalent for text content?

I have some data that I want to present in a FlowDocument. This will basically be a view that explains the data in a friendly way, with section headers, paragraphs of text, etc., and which I will ...
3
votes
2answers
163 views

Loading FlowDocument.xaml that is part of my solution

I created a FlowDocument.xaml in my current WPF project. What i want to do is when the user clicks a button the XAML document will be loaded in the code behind, have some data on the document ...
3
votes
2answers
334 views

FlowDocument sourced from external resource

I am trying to externalise some of the wording within my WPF application, however I would like to be able to use some degree of formatting as well. My initial thought was to use a string resource ...
3
votes
1answer
967 views

Binding a list in a FlowDocument to List<MyClass>?

I have a FlowDocument containing stuff bound to my ViewModel like this: <FlowDocumentReader> <FlowDocument> <Paragraph> <Run Text="{Binding MyTextProperty}"/> ...
3
votes
1answer
374 views

WPF RichTextBox – Iterate through the text's words and change their content and formatting

I have a WPF RichTextBox which contain in its FlowDocument both text and images. I need to iterate through the text's words (those which builds the text which the user see on the screen) and change ...
3
votes
2answers
1k views

WPF: Printing FlowDocument without Print Dialog

I am writing a note-taking application in WPF, using a FlowDocument for each individual note. The app searches and filters notes by tags. I want to print all notes in the current filtered list as ...
3
votes
1answer
555 views

How can I add a FlowDocument to a StackPanel?

I created the following class in order to have an easy way to display formatted text in a WPF document. However this solution returns a FlowDocument, and I am having trouble integrating this ...
3
votes
2answers
1k views

Copying one FlowDocument to Second FlowDocument

How can i copy the contents of one FlowDocument to another FlowDocument below is what i tryed foreach (var blk in fd1.Blocks) { fd2.Blocks.Add(blk); } fd1 is FlowDocument1 and fd2 is ...
3
votes
5answers
3k views

WPF Printing Flow Document

Greetings, I have a problem with printing in WPF. I am creating a flow document and add some controls to that flow document. Print Preview works ok and i have no problem with printing from a print ...
3
votes
2answers
945 views

Detect FlowDocument Change and Scroll

I want to detect (preferably through an event) when any content is added, changed, etc. in a FlowDocument and when it does I want to cause a FlowDocumentScrollViewer displaying the FlowDocument to ...
3
votes
1answer
3k views

Getting a flowdocument from a xaml template file

I got a Xaml file that starts like this: <FlowDocument x:Name="flowDocument" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ...
3
votes
3answers
2k views

Displaying streaming rich text with WPF

I have a WPF application that connects via a socket to a device and gets streaming text data (approx 1 message per second). This data is then displayed on the UI. The user can create rules like "If ...
3
votes
2answers
2k views

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 - I need to figure out a way to parse that and insert it into my FlowDocument. I've ...
2
votes
1answer
78 views

wpf FlowDocument

I am converting html to xaml and loading it in a stackpanel with flowdocumentscorllviewer. The content is rendering correctly from the html. My issue is the content or the flowdocument does not appear ...
2
votes
0answers
119 views

Flowdocument pagination with BlockUIContainer

Does anyone know how to break a large BlockUIControl over several pages in a FlowDocument? Right now it is getting cut off rather than paginating it. I am using a custom DocumentPaginator ...
2
votes
1answer
264 views

creating an XPS Document from a FlowDocument and attach it on the fly

I have a FlowDocument that I want to convert to an XPS Document and attach it to an e-mail and send it all together. I'm using this code public static MemoryStream FlowDocumentToXPS(FlowDocument ...
2
votes
1answer
161 views

How to get TextBlock to Wrap or scroll inside FlowDocumentScrollViewer

I have the following XAML inside a 4 Row by 2 column grid. The Grid.ColumnDefinitions have both ColumnDefinition Width's set to *. <FlowDocumentScrollViewer Style="{StaticResource myFlowDoc}" ...
2
votes
1answer
604 views

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 be sent as an email. The method I am currently using does not give any formatting at all: string ...
2
votes
1answer
430 views

WPF/C# - Create FlowDocument Programatically from XAML?

I'm kind of new to this FlowDocument thing, so I'm perfectly willing to accept that I'm doing something wrong. With that said, I have written a FlowDocument which exists within my project as a XAML ...
2
votes
0answers
170 views

Bug in FlowDocument Table?

first of all, Width calculation of FlowDocuments TableColumns is a mess. but this is rather ridiculous: <FlowDocumentScrollViewer> <FlowDocument> <Paragraph>text that's not ...
2
votes
1answer
275 views

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 is present in the document. Not if it contains UIElement's new ...
2
votes
2answers
148 views

Handle all Hyperlinks MouseEnter event in a loaded loose Flowdocument

I'm new to WPF, working on my first project. I've been stuck in this problem for a week so I'm trying to find some help here. I have a FlowDocumentReader inside my app, wich loads several ...
2
votes
2answers
113 views

FlowDocument loses ClearType in child elements when placed in window with custom glass

So the new WPF 4 text rendering looks great, but enabling the aero glass effect on a window requires that you change the background to transparent, which of course disables ClearType rendering. Using ...
2
votes
0answers
285 views

flowdocument - inserting rich text at end creating extra paragraph breaks above insertion point

I am creating a flowdocument that consists multiple records. Each record contains two tables at the top, and then some rich text that I'm pulling out of a database. The code that appends the rich ...
2
votes
2answers
391 views

Writing out FlowDocument xaml with namespace using XmlWriter

I've got a collection of data that needs to be converted to a .xaml file that can later be loaded as a FlowDocument into a FlowDocumentReader. I don't directly instantiate Paragraphs, Runs, rather I ...
2
votes
2answers
407 views

WPF Flowdocument - Prevent line break before % sign

I've got a FlowDocument generating a document for a client, and it's getting a line break that they don't like. Is there any way to mark a section of text that it should avoid line breaks? Something ...
2
votes
1answer
95 views

documentation tool

I'm looking for a tool to produce documents in our team. Please note that I'm not looking for a tool that reads the comments in the source code and generates documentation. Ideally, I'd like to have a ...
2
votes
1answer
322 views

WPF FlowDocument Table of Contents

I've got an application that generates a fairly long FlowDocument. It uses a "custom" paginator to wrap a header and footer around each page when printed. In addition, each page contains one or more ...
2
votes
1answer
339 views

Select a WPF UIElement in a FlowDocument

I have a FlowDocument (inside a RichTextBox) that contains UIElement controls such as CheckBoxes. I need the user to be able to click on the CheckBox to select it to change the controls properties ...
2
votes
3answers
471 views

Finding all Images in a FlowDocument

Since I am pretty new to WPF FlowDocuments I would like to ask if the code below is correct. It is supposed to return all Images contained in a FlowDocument as List: List<Image> ...
2
votes
1answer
200 views

Show progress bar when sending pages to the printer (WPF)

I am creating printouts in WPF using flow documents. These printouts are set in separate window where DocumentViewer is placed. When user clicks print I would like to show a progress bar that informs ...
2
votes
1answer
109 views

FlowDocumentPageViewer mouse scroll navigates to the next pages instead of scrolling to the end of the page first

I am trying to show a PrintPreview in ActualSize Mode and I have the following structure in my xaml: The problem is when I mouse scroll, instead of scrolling to the end of the page as you scroll ...
2
votes
1answer
934 views

WPF 4 FixedDocument multiple pages

What is the best way to print a complex layout spanning multiple pages in WPF? (for example an invoice layout spanning multiple pages because of many invoice items) I'm guessing one of these methods ...

1 2 3 4 5