Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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. ...
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
2answers
3k 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" ...
1
vote
1answer
329 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
0answers
103 views

FlowDocumentScrollViewer woes

My goal is to have exandable sections in a flow document. This XAML works, BUT 1- if you change the root from grid to stackpanel the scrollbar no longer works. 2 - Exand section 1. Scrolldown and ...
1
vote
1answer
767 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
0answers
33 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
59 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
83 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
66 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
162 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
1answer
521 views

FlowDocument with dinamyc content (BlockUIContainer)

I write simple xaml-file in notepad: <FlowDocument AllowDrop="True" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"><Paragraph /> <BlockUIContainer><Button ...
0
votes
2answers
826 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 ...