The flowdocumentreader tag has no wiki summary.
0
votes
1answer
73 views
Setting the background color of a FlowDocument in a FlowDocumentReader
I have been using a RichTextBox to show FlowDocuments in a WPF app, but I found that there is something called FlowDocumentReaderwhich gives me alot of functionality for free. The problem is that ...
0
votes
0answers
16 views
FlowDocumentReader in WPF
How do I turn off the find option of combobox dropdown with values like match diacritic,match kashida,match alef hamza of FlowDocumentReader?
0
votes
1answer
35 views
Wpf FlowDocumentReader column property
Have one problem with FlowDocumentReader. When the "one page view" selected it looks something like that.
But i want to have only one column, can anyone advise me a solution?
0
votes
1answer
39 views
How to change the font in all FlowDocumentReader controls?
How to change font in all FlowDocumentReader controls in WPF?
For some selection i do
FontFamily f = new FontFamily("Verdana");
flowDR.Selection.ApplyPropertyValue(TextElement.FontFamilyProperty, ...
0
votes
0answers
117 views
WPF Flowdocumentreader line highlighting
I'm currently using a FlowDocumentReader to display a text file. I would like to highlight a certain lines in the file when it is displayed. I'm trying to do this with the following code
FlowDocument ...
0
votes
1answer
251 views
WPF Book-like application
I would like to develop a WPF application which behaves like a book. There would be two pages and the user would be able to edit it.
I cannot use a FlowDocumentReader since it is not user-editable. I ...
0
votes
1answer
589 views
How to enable hyperlinks in FlowDocument?
I have .htm files in my database, which are converted to FlowDocument and placed into FlowDocumentReader for viewing. The .htm files have hyperlinks inside them:
1)internal(to other fragments of ...
0
votes
1answer
164 views
How to bind a resource to a flowdocumentreader from a treeview with only XAML?
This time I am working on a help-window mini-application (to include in the other project, the imageediting application).
I have a grid with two columns and a gridsplitter inbetween. On the left I ...
0
votes
1answer
120 views
How can i attach ListView to WPF FlowDocumentReader?
I've a listview and i need to attach this listview table into FlowDocumentReader, can any one help me how can i do this one.
Thanks,
@nagaraju.
4
votes
2answers
302 views
WPF XPS Redaction
I like DocumentViewer for display of an XPS document in a WPF application. But I also need to redact the XPS document. I have found stand alone applications (.exe) for redacting XPS. What I need ...
1
vote
1answer
543 views
FlowDocumentScrollViewer vs FlowDocumentPageViewer
I have 2 possible ways to display my FlowDocument:
FlowDocumentScrollViewer
Upside:
- This just presents me the data, with no attention to pages, so the user simply scrolls through everything. On ...
1
vote
1answer
697 views
WPF Binding IsAsync Fail
Have an object with most of properties very lightweight - text up to 200 character. One property is FlowDocument that can be large and want to retrieve it Async. It fails when I set Async = True ...
6
votes
1answer
436 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. ...
0
votes
1answer
460 views
How to display xps document on Flowdocumentreader in wpf?
How to display xps document on Flowdocumentreader in wpf?
I am usging .NET 4.0, a wpf browser application for loading xps document with FlowDocumentReader.
1
vote
2answers
463 views
How can I keep XamlReader.Load(xamlFile) from inserting extra Run elements?
Imagine I've got a FlowDocument like so:
<FlowDocument xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
ColumnWidth="400" FontSize="14" FontFamily="Georgia"
...
2
votes
2answers
368 views
Adding a menu item to a FlowDocumentReader ContextMenu
The FlowDocumentReader has two menu items in its ContextMenu, Copy and Select All. I'd like to add an additional MenuItem to it and have tried this:
private void ...
2
votes
2answers
741 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 ...
0
votes
2answers
844 views
How to determine the width of content or size a container to content
EDIT:
Ok, it's kind of solved, but it feels dirty:
foreach (ContainerVisual cv in SurfaceNYTR.Helpers.VFTreeHelper.FindVisualChildren<ContainerVisual>(flowDocReader))
{
...
1
vote
0answers
288 views
Design-time document for FlowDocument
I am trying to set the document of FlowDocumentReader at design-time but cannot figure out how to do it in a pure declarative way. There is no design-time attribute for Document and using DataContext ...
0
votes
1answer
614 views
Wpf flowdocumentReader page turn effect
I am working in a very crucial wpf project.This project is almost finished apart from some points.
I am showing flowdocumentreader which is loaded with dynamic images around 100.
I have one ...
0
votes
1answer
445 views
How do I send a NavigationCommand to a control?
FlowDocumentReader doesn't have a GoToPage method, but it supports NavigationCommands.GoToPage RoutedUICommand.
How do I send NavigationCommands.GoToPage with parameter (for example: 1) to my ...
1
vote
1answer
688 views
Table inside FlowDocument truncates right-most columns, why?
I have a Table with 4 columns inside a FlowDocument. I've set the width of the columns but when viewed in FlowDocumentReader, when in Page Mode or 2 Page Mode, the right most column is truncated.
...
1
vote
0answers
135 views
FlowDocumentReader not Routing Find Command
I have a FlowDocumentReader in my application. The containing window has registered its interest in the ApplicationCommands.Find command.
When I have focus on any part of the window the Find command ...
4
votes
1answer
417 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 ...
0
votes
1answer
864 views
Bookmarking WPF's FlowDocumentReader
I'm trying to save and restore the position of the document within a FlowDocumentReader to create a bookmark feature. There doesn't appear to be any seeking or search feature build in that is publicly ...
0
votes
0answers
144 views
flowDocumentReader Selection propperty
i have written a code to select a text in flow documet reader and bring it into view
docView1.Focus();
docView1.Selection.Select(textRange.Start, textRange.End);
...
1
vote
2answers
561 views
WPF FlowDocumentReader and FlowDocument Screen Reader (NVDA) Acccessibility
I am using a FlowDocumentReader to display FlowDocuments in a .NET 3.5 WPF application (the FlowDocuments have help/info/notes that are displayed based on user choices in the UI).
I assumed that the ...
2
votes
2answers
2k views
Hide controls in FlowDocumentReader
Is it possible to hide controls at the bottom like zoom slider, page navigation etc in FlowDocumentReader? It seems that only search can be hidden through the IsFindEnabled property.
1
vote
2answers
684 views
How to goto particular page number in flowdocument reader through code in WPF?
There is a pagenumber property in flowdocument reader.But that property is readonly. Is there any way to goto particular page number in flowdocument reader.Please help.
Thanks.
