Questions dealing with Microsoft's WPF FlowDocument technology which renders embedded, dynamically adjusted and re-flowing document content that supports columns, pagination and search.
1
vote
0answers
12 views
Flow Document in Windows Phone 8
I am creating a Google Books reader app for Windows Phone 8 that uses the Google Books API for fetching the data. I want to use a flow document kind of appearance while a user goes through the pages ...
0
votes
1answer
26 views
Wpf Richttextbox Custom Validation
I need some advanced validation in WPF Richtextbox for flowdocuments, something like:
a) formatting can be applied only to the whole paragraph
b) no spans are allowed
c) these rules also need to be ...
0
votes
0answers
16 views
FlowDocument doesn't use dynamic PageWidth
I have a WPF application where I wish to render HTML in my application without using Frame/WebBrowser/ActiveX control (by the way, why has Microsoft not made a native WPF control for this?). The HTML ...
0
votes
0answers
26 views
From Silverlight RichTextBox.Xaml to WPF RichTextBox.FlowDocument
I have two applications - one in silverlight and one in wpf - I export Xaml from Richtextbox in Silverlight application. now I want to import it to FlowDocument of Richtextbox in WPF application.
I ...
0
votes
0answers
31 views
Need formatting in saving FlowDocument
I create FlowDocument with Table in it and I need to save it in file(ex. *.rtf) with formatting of document. For example I need to change document direction from book to album.
Now I am saving it ...
2
votes
1answer
44 views
How can I prevent wrapping in a WPF FlowDocument in C# code?
Studies have shown this is the way to prevent wrapping in, say, a Paragraph:
<Paragraph>
<TextBlock TextWrapping="NoWrap">unwrapping text</TextBlock>
</Paragraph>
How ...
0
votes
0answers
30 views
Generating Print ready contents with WPF with paper precision
I am new to WPF and c# as a whole. I have experience from programming language like PHP, HTML and Javascript so I was able to cope quickly.
I have a project that is used to print PINs and Serial ...
0
votes
1answer
31 views
How to get the HEIGHT of the Run or Paragraph
I found the Run or Paragraph in FlowDocument and now I need to know the HEIGHT of it.
i.e.
while (navigator.CompareTo(flowDocViewer.Document.ContentEnd) < 0)
{
TextPointerContext context ...
4
votes
1answer
76 views
WPF Printing - Set the Printer Automataically on WPF PrintDialog
I am trying to print a WPF FlowDocument to a particular printer, without prompting the user. The printer is a PDF converter.
This works great except that it prints to the default printer:
...
0
votes
0answers
162 views
Flowdocument and Databinding
After thoroughly reading the documentation on flowdocuments (in WPF) it seems as though flowdocument does not easily support databinding. PLEASE say this is not true! I have a listbox using the sample ...
0
votes
1answer
110 views
Create Horizontal Line in FlowDocument programmatically
I am programmatically creating a FlowDocument, then translating it to Rich Text, so a user can edit it in a Rich Text box. I cannot figure out how to insert a horizontal line in the FlowDocument that ...
3
votes
1answer
60 views
Escape Sequence for Print to new page
I am trying to print a very long string using a Flow document.
I am generating a string like this:
foreach (item listitem in mylist)
{
string aa += listitem.firststring + " " + ...
1
vote
1answer
120 views
Convert a Flowdocument to XML and XML to Flowdocument
I use the Code from here(Answer from Wiimax) to convert my FlowDocument to XML and convert it back to FlowDocument. But now i have some Problems here.
My Code for the convert:
public static bool ...
0
votes
1answer
32 views
I want to set text “Foreground” with rgb in the FlowDocument
I want to set text "Foreground" with rgb in the FlowDocument.
How can I do this?
String ^text = "<FlowDocument \
xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\" \
...
1
vote
1answer
45 views
FlowDocumentScrollViewer FontSize doesn't change FlowDocument content FontSize
could anybody please explain my why the following code doesn't work
<UserControl x:Class="FlowDocReader.FlowDocumentScrollViewerIssues"
...
1
vote
1answer
52 views
FlowDocumentScrollViewer in Datagrid
I got the following Error Message: "Must disconnect specified child from current parent Visual before attaching to new parent Visual"
I know whats the problem but I'm unable to fix it in my real ...
0
votes
0answers
33 views
XPS FlowDocument Two BlockUIContainers Side By Side
0
Hi There
I am looking for a way to have two BlockUIContainers (FIGURE) (side by side) in a paragraph? Please note that I cannot use InlineUiContainer (which makes it possible to align two controls ...
0
votes
1answer
57 views
How to append a FlowDocument to RichTextBox?
I want to append richTextBox2.Document to richTextBox1, but WPF dont support to joint 2 FlowDocument. Is any way to do this? Thank you very much!
0
votes
1answer
200 views
Read richtextbox XAML from Silverlight in WPF
I have Silverlight application that saves the RichTextBox in XAML, like this:
<Comentario>
<Section xml:space="preserve" HasTrailingParagraphBreakOnPaste="False" ...
-1
votes
1answer
128 views
mark specific content of a richTextBox [closed]
I would like specific content of a richTextBox after it was loaded mark colored (the `background 'of certain words change). When I click on a button to e.g. the word car to be marked. Now I found this ...
5
votes
2answers
370 views
ElementHost + FlowDocument = GC not working, memory keeps increasing
[Updated, see bottom!]
There is a memory leak in our WinForms application hosting a WPF FlowDocumentReader in an ElementHost. I have recreated this issue in a simple project and added the code below. ...
0
votes
2answers
109 views
Load .txt file into FlowDocument
How can i load a .txt file as FlowDocument to put it in a RichTextBox?
0
votes
1answer
125 views
Scrolling a FlowDocument inside a TabControl
I have this XAML fragment:
<!-- ... -->
<TabControl>
<TabItem>
<!-- ... -->
</TabItem>
<TabItem Header="Source" ...
0
votes
0answers
69 views
Null Reference Exception when clearing content from flowdocument
I am clearing content from FlowDocument using Dispatcher.The code is in non UI assembly. The code is
Application.Current.Dispatcher.BeginInvoke(DispatcherPriority.Normal,
new ...
0
votes
0answers
30 views
Can I use ObjectPoolingAttribute for creating object of Flowdocument?
In my application (.NET 3.5) I can see that FlowDocument is consuming too much memory and the memory allocated to it remains in memory. So instead of creating the objects each time, I an thinking of ...
1
vote
2answers
100 views
WPF Template Form
I want to create a recipe application. I would like the input to look and feel like you are editing a document. If I were doing this in word, I'd create a template form for the user to use for the ...
-1
votes
2answers
92 views
Removing flowdocument objects from memory
NOTE: The Question could be duplicate of this, still posting it to get the update on this issue.
I am creating multiple (more than 1000k, not in loop but as and when required) objects of flow ...
0
votes
0answers
66 views
FlowDocument Paragraph Style C#
How can I get style name paragraph in flowdocument from resource?
I can read Document.Resources and I can read Style but name I dont know.
var style = oParagraph.Style;
foreach (var res in ...
0
votes
0answers
129 views
Overlap two blocks with the WPF RichTextBox (FlowDocument)
Is there a way to have two blocks in the WPF RichTextBox FlowDocument overlap?
For example: Have a TextBox (or any other block) that overlaps a paragraph (so that the text from the paragraph does not ...
0
votes
0answers
71 views
Automatic width for display of FlowDocument
In my application, I'm generating a FlowDocument with several paragraphs of text.
Using a FlowDocumentScrollViewer , I can display the document in my UI. If the document is too long for the available ...
1
vote
1answer
135 views
Insert FlowDocument into another FlowDocument at cursor position
I'd like to insert a FlowDocument (doc1) into another FlowDocument (doc2) at doc2's current Cursor Position.
I know I can get the Cursor position through CaretPosition of the RichTextBox the Document ...
9
votes
3answers
442 views
TableCell split after page break : remainder split part loses original cell properties
I have an issue regarding a TableCell splitting strategy on WPF FlowDocument Table.
Here is a simple code allowing to reproduce the issue :
MainWindow.xaml.cs
/// <summary>
/// Interaction ...
0
votes
1answer
247 views
WPF: using RichTextBox / FlowDocument in ToolTip
I would like to use RichTextDocument / Flow document as content of tooltip to get more formatting features in tooltip. But some strange results happen:
If use RichTextBox inside tooltip
<Label ...
0
votes
1answer
82 views
padding margin an inline Flowdocument
I'm searching for an option to apply a margin or/and padding to an inline element as Span in Flowdocument.
Any ideas?
0
votes
1answer
665 views
Printing a flowdocument with dynamic data in WPF
I am trying to find a good way to print a flow document in WPF. What I want is to have a possibility to see how the document turns out as I design it, so therefore creating a pure FlowDocument as a ...
2
votes
1answer
202 views
How to adjust the space between paragraph in a flow document by programming
I'm a beginer in C# Wpf and I want to make a flow document with few paragrah by programming.
The problem is that there is a big space between pagraphs and i want to resize it to its minimum.
I found ...
0
votes
0answers
90 views
Displaying multiple RTF strings in a FlowDocument
I have multiple RTF strings that I wish to merge and display for printing, I guess using a flow document. I have seen many examples of taking one RTF string (stream) and then using a TextRange object ...
0
votes
1answer
77 views
How to create flowdocument table of contents
I have created a flow document. In case the document is printed or saved to a file I would like to add a TOC to the start of the document.
What is the correct way of creating a TOC in a flowdocument? ...
2
votes
1answer
134 views
How to print very large object in wpf
I need to print very large and complicated object - virtualizet in two dimension matrix what have two tables at left and top side and at the middle represent the intersections of tables.
Each table ...
0
votes
0answers
192 views
why the richtextbox control do work like this
The richtextbox will always add an extra pair of brace into the flowdocument after each time saved, if the content is code.sorry i'm chinese ,english so poor
-----that's my code-------
using ...
0
votes
1answer
92 views
PDFs in a FlowDocument
I have a FlowDocument which is created dynamically (containing several tables). I need to embed PDF documents in this document. Eg: I might have a table, then a couple of PDF documents, then another ...
0
votes
0answers
166 views
Resize WPF Control before rendering to a FlowDocument
I have a custom Chart (inherits from Control) that gets really wide, so it's got some logic to start scrolling side to side. I want to be able to print it though, so I've got some logic to calculate ...
0
votes
1answer
340 views
Can't get FlowDocument / RichTextBox text
Ia have RichTextBox with content defined as following:
<FlowDocument>
<Paragraph x:Name="para">
<Label Padding="0,0,0,0" ...
0
votes
0answers
156 views
How to Design a WPF Flow Document
Im making an wpf application and i need to generate reports and then to print them. I am using CodeReason.Reports library but it is very dificult to me to design the reports with out a designer.
Any ...
0
votes
0answers
50 views
FlowDocumentScrollViewer Read-Only Selection is null before user klicks in it, how to set a selection before?
The WPF FlowDocumentScrollViewer has a read-only property Selection. I want to set a selection, which can be done by:
Paragraph par; // the paragraph that should be selected
...
0
votes
1answer
180 views
How can I keep a table together in a FlowDocument?
I thought if I place the Table in a Paragraph that I could use the KeepTogether attribute to keep the table together. The table is used for the totals of a report and the client does not want them ...
0
votes
1answer
193 views
RichTextBox IsDocumentEnabled with InlineUIContainers
I'm creating a RichTextBox which contains various different InlineUIContainers, but can't seem to get button click events within those containers to work. If I set IsDocumentEnabled = true for the ...
0
votes
1answer
203 views
Removing TextDecoration from end of WPF RichTextBox run
I have a RichTextBox with bolded text, but need to programmatically cause the bolding to "end" when the user enters a semicolon ;.
For instance, my rich text box has the following boldedtext:
hello ...
0
votes
1answer
168 views
WPF RichTextBox/FlowDocument do something on specific text added
I'm attempting to extend a RichTextBox in order to add some functionality, and need the ability to call a function when certain characters are entered. For instance, every time a user enters a ';', I ...
0
votes
1answer
204 views
WPF FlowDocument layout [closed]
I have a FlowDocument in which I need to insert many fragments of dynamic text at arbitrary positions.
For example, I need to place text "Hello" at x = 10, y = 15 and text "World" at x = 10, y = 20.
...


