0
votes
1answer
26 views
making a simple search function, making the cursor jump to (or highlight) the word that is searched for.
Dear community.
I have now used way too long time, trying to figure out a problem, which I didn't think would be that hard.
Here is the deal:
I am writing a small application us …
0
votes
2answers
16 views
Detect FlowDocument Change and Scroll
I want to detect (preferably through an event) when any content is added, changed, etc. in a FlowDocument and when it does I want to cause a FlowDocumentScrollViewer displaying the …
0
votes
2answers
23 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
…
0
votes
0answers
36 views
How can I copy WPF FlowDocument InlineUIContainer contents?
I have a WPF FlowDocument that has a few InlineUIContainers, these are simple InlineUIContainers, that contain a styled button with some text in the Button.Content. When I copy th …
0
votes
2answers
91 views
How can I hide a Paragraph in a FlowDocument?
Is there any way to use databinding to show or hide a Paragraph within a FlowDocument? (I want to use MVVM, but with a FlowDocument as my view.)
Paragraph doesn't have a Visibilit …
0
votes
1answer
98 views
How do I save RichTextBox content into SQL varbinary (byte array) column?
Hi
I want to save content of a RichTextBox to varbinary (= byte array) in XamlPackage format.
I need technicial advise on how to it.
I actually need to know how to convert betwee …
0
votes
0answers
14 views
Blocks to UIElement conversion
Hai is it possible to convert a 'System.Windows.Documents.Block' to 'System.Windows.UIElement' .
I need this as i want to add the blocks i created to a fixed document.is there any …
0
votes
2answers
77 views
Repeating databound item in WPF FlowDocument
Hello, I have a flowdocument in WPF that looks like this:
<FlowDocument xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas. …
0
votes
1answer
37 views
Why I cannot drop files from explorer to FlowDocumentReader and how to fix it?
I'm trying to implement a piece of functionality that will let the user to drag files into an application to be opened in the FlowDocumentReader.
My problem is that is though I ha …
0
votes
1answer
111 views
WPF FlowDocument Table - AutoFit option?
I want a table to logically size the columns according to the contents. Is this possible in WPF?
Here is the code I'm working with:
<Window x:Class="FlowDocument.Window1"
…
1
vote
1answer
53 views
WPF Documents: How to create paragraphs of “underlines” on which you can write answers to questionnaires
I am creating an application that is meant to print out forms meant to be filled in by humans writing on paper. These documents follow a question and answer style. Typically you ha …
0
votes
0answers
25 views
Document Paginator
How to override our own paginator instead of documentPaginator for a flowDocumentPageViewer -
1
vote
1answer
230 views
WPF/XAML: Typography.Capitals seems to have no effect
All of these bits of text look the same, but I am trying to get them to look different. I want small caps text. What am I missing here to get the small caps typography effect to wo …
0
votes
0answers
36 views
Colorize FlowDocument
Hi.
I'm using C# 3.0 and I have following FlowDocument:
var doc = new FlowDocument();
var p = new Paragraph();
p.Inlines.Add(new Run("Hello 777 world 777"));
doc.Blocks.Add(p);
…
0
votes
0answers
26 views
Why does my table get not printed when I try to define column widths?
Hi!
I'm printing a table using WPF FlowDocument. It works as long as I don't assign any width to the table columns. Once I set the width to any custom value (not auto), the printe …
