Use FlowDocumentReader to display FlowDocument : FlowDocument « Windows Presentation Foundation « C# / C Sharp






Use FlowDocumentReader to display FlowDocument

Use FlowDocumentReader to display FlowDocument
  

<Window 
  x:Class="WpfApplication1.Window1"
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  Title="Window1" Height="300" Width="300" Loaded="Window_Loaded">
  <DockPanel>
    <Button DockPanel.Dock="Bottom" Content="Save..." Click="btnSave_Click"/>
    <FlowDocumentReader x:Name="fdrViewer" />
  </DockPanel>
</Window>

//File:Window.xaml.cs

using System;
using System.IO;
using System.Windows;
using System.Windows.Documents;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Shapes;
using System.Xml;
using Microsoft.Win32;

namespace WpfApplication1
{
    public partial class Window1 : Window
    {
        public Window1()
        {
            InitializeComponent();
        }
        private void btnSave_Click(object sender, RoutedEventArgs e)
        {
            
            SaveFile("c:\\", fdrViewer.Document);
        }
        private void SaveFile(string fileName,IDocumentPaginatorSource documentSource)
        {
            XmlTextWriter xmlWriter = null;
            TextWriter writer = null;
            Stream file = null;

            try
            {
                file = File.Create(fileName);
                writer = new StreamWriter(file);

                xmlWriter = new XmlTextWriter(writer);

                XamlDesignerSerializationManager xamlManager = new XamlDesignerSerializationManager(xmlWriter);
                XamlWriter.Save(documentSource.DocumentPaginator.Source, xamlManager);

            }
            catch (Exception e)
            {
                string msg = string.Format("Error occurred during saving.{0}{0}{1}",
                    Environment.NewLine,
                    e.Message);

                MessageBox.Show(msg,"Error",MessageBoxButton.OK,MessageBoxImage.Error);
            }
        }

        private void Window_Loaded(object sender, RoutedEventArgs e)
        {
            FlowDocument flowDocument = new FlowDocument();
            Paragraph paragraph = new Paragraph();
            paragraph.Inlines.Add("This is a paragraph.");
            flowDocument.Blocks.Add(paragraph);

            flowDocument.Blocks.Add(paragraph);

            fdrViewer.Document = flowDocument;
        }
    }
}

   
    
  








Related examples in the same category

1.FlowDocument with SectionFlowDocument with Section
2.FlowDocument with UI containerFlowDocument with UI container
3.FlowDocument with TableFlowDocument with Table
4.Span and FlowDoucmentSpan and FlowDoucment
5.FlowDocument with Figure.xamlFlowDocument with Figure.xaml
6.Paragraph FontWeightParagraph FontWeight
7.FlowDocument with Hyperlink and ListFlowDocument with Hyperlink and List
8.Adding style to ParagraphAdding style to Paragraph
9.Bold text in Flow documentBold text in Flow document
10.Create Table layout in FlowDocument
11.Figures in a FlowDocumentFigures in a FlowDocument
12.Styled DocumentStyled Document
13.Add ListItem to FlowDocumentAdd ListItem to FlowDocument
14.FlowDocument with TextAlignment, ColumnWidth. Italic and bold fontFlowDocument with TextAlignment, ColumnWidth. Italic and bold font
15.Flow Document ReaderFlow Document Reader
16.Add FlowDocument to ButtonAdd FlowDocument to Button
17.FlowDocument with imagesFlowDocument with images
18.Add Shape(Ellipse, Rectangle) to ListAdd Shape(Ellipse, Rectangle) to List
19.Change FlowDocument Width and HeightChange FlowDocument Width and Height
20.Programmatically change the FlowDirection of content within a FlowDocumentReader elementProgrammatically change the FlowDirection of content within a FlowDocumentReader element
21.Programmatically Create and Save a FlowDocumentProgrammatically Create and Save a FlowDocument
22.Use XamlDesignerSerializationManager to write FlowDocumentUse XamlDesignerSerializationManager to write FlowDocument
23.Show FlowDocumentShow FlowDocument
24.Load a FlowDocument into a FlowDocumentReader,Load a FlowDocument into a FlowDocumentReader,
25.Convert Xaml file to FlowDocument with as operator
26.Save a FlowDocument as a Extensible Application Markup Language (XAML) file
27.Clear FlowDocumentReaderClear FlowDocumentReader
28.Programmatically add rows to a Table element.Programmatically add rows to a Table element.
29.Table Flow ContentTable Flow Content
30.Annotation ServiceAnnotation Service
31.Toggle Hyphenation, Optimal Paragraph, and Column FlexToggle Hyphenation, Optimal Paragraph, and Column Flex
32.Change font Change font