Search code examples
c#wpfxamlflowdocument

Loading FlowDocument.xaml that is part of my solution


I created a FlowDocument.xaml in my current WPF project. What i want to do is when the user clicks a button the XAML document will be loaded in the code behind, have some data on the document modified, and then print it out. The sticking point is i don't know how load the flow document so that i can modify it.

When I do:

FileStream fs = File.Open("FlowDocument.xaml", FileMode.Open)

It says that it can't find the file. The file is part of the project and I'm guessing it gets packaged with the rest of the project when compiled.

Any help is appreciated


Solution

  • Assuming it is configured to be a Resource, then you can load it like so:

    FlowDocument doc= Application.LoadComponent(new Uri("/Path/FlowDocument.xaml", UriKind.RelativeOrAbsolute)) as FlowDocument;