Tagged Questions
The flowdocumentreader tag has no wiki summary.
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. ...
4
votes
1answer
303 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 ...
2
votes
1answer
144 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
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
870 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
0answers
55 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
176 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 ...
1
vote
2answers
206 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"
...
1
vote
0answers
152 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 ...
1
vote
1answer
442 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
84 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 ...
1
vote
2answers
404 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 ...
1
vote
1answer
380 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.
0
votes
1answer
33 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
0answers
12 views
How to Find Start and end positions of line where mouse is positioned in FlowDocumentReader?
I have a FlowDocumentReader.When my cursor is in line of FlowDocumentReader.I want to get that line.I know about RichTextBox.We can do through RichTexbox for this.But i wanna do with ...
0
votes
1answer
9 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.
0
votes
0answers
30 views
How Can I Get TextPointer from a mouse click in a FlowDocument?
I would like to get the row that a user has clicked on in a FlowDocument. I bind the data to flow document by row wise, when I click on that row I get that row with out selecting that row. I am using ...
0
votes
1answer
58 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 ...
0
votes
0answers
61 views
How to format text in flowdocument?
I have a flowdocumentreader and a flowdocument that is binded to the reader. I need to format the text that the flowdocumentreader is showing. For example, if I take the records from the database and ...
0
votes
1answer
158 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.
0
votes
0answers
130 views
FlowDocumentReader - bad URI causes exception
In WPF I have a richtextbox that accepts pasted email messages and renders them in a flowdocumentreader.
Within the messages there are URI links such as [mailto:xyz@abc.com].
Once in the the ...
0
votes
2answers
350 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))
{
...
0
votes
1answer
365 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
2answers
219 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 ...
0
votes
1answer
611 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
111 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);
...