Tagged Questions

5
votes
1answer
169 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. ...
3
votes
2answers
4k views

How can I produce a “print preview” of a FlowDocument in a WPF application?

Various WPF applications of mine display FlowDocument's. I'm able to print them, using the approach described in the answer to Printing a WPF FlowDocument. Now I'd like to add a "print preview" ...
2
votes
1answer
173 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}" ...
1
vote
1answer
338 views

Bind FlowDocument to my FlowDocumentScrollViewer

I'm a bit of a WPF/XAML newbie, so it is probably a very obvious question. I added a new item to my project of the FlowDocument type. Let's call it CrappyFlowDocument.xaml: <FlowDocument ...
1
vote
1answer
801 views

RichTextBox vs FlowDocumentScrollViewer - Why do they look so different?

I have a very simple xaml file where I am passing the same Paragraph and Run elements to both a RichTextBox and a FlowDocumentScrollViewer. The both look radically different - which is not what I was ...
0
votes
1answer
20 views

Using a string to create a flow document

I have some text that is being read in from the database. This text is a string representation of a xaml section object. This text is going to differ based on selections from a combo box. Here is ...
0
votes
0answers
42 views

Bookmarking content in a flowdocument hosted in a flowdocumentscrollviewer

The requirement is to place a bookmark icon on the left side of a flowdocument hosted in a flowdocumentscrollviewer. I am trying to achieve this with the following XAML and code: ...
0
votes
1answer
76 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
1answer
89 views

flowdocumentscrollviewer paragraph visible true false

i have used flowdocumentscrollviewer in one of my application as below, <FlowDocumentScrollViewer Name="fdsvList" Grid.Column="0" Grid.Row="1" ...
0
votes
2answers
70 views

Disable a FlowDocumentScrollViewer's print command binding (and use my Window's instead!)

In my WPF app, I have created a Window which contains a FlowDocumentScrollViewer, amongst other controls. I have created a command binding for my Window to the Print command, with an Executed handler ...
0
votes
1answer
170 views

Horizonatal Scrolling in FlowDocumentScrollViewer

I have a flow document with images (created from drawings). I have provided a button for the user to enlarge the images (zoom) independently without zooming the text. Is there anyway, I can force the ...
0
votes
2answers
858 views

Get controls by position within wpf FlowDocumentScrollViewer

I have a FlowDocument with much content inside. I need to get the controls that are currently in the visible area. with DependencyObject obj = FlowDocumentScrollViewerCtrl; do { if ...