Is it possible to add FixedPage to a WPF Window?

401 Views Asked by At

Is it possible to have a already created FixedPage from a FixedDocument and add it to a WPF Window like you would add a UserControl?

The purpose is basically add page to a Grid and wrap borders, headers, and/or footers to the page to create a new fixed page.

Was trying something like this but it did not work:

    <ContentControl Content="{Binding}" Grid.Row="1">
        <ContentControl.Resources>
            <DataTemplate DataType="{x:Type local:CustomerReportPageViewModel}">
                <Grid>
                    <Grid.RowDefinitions>
                        <RowDefinition Height="Auto" />
                        <RowDefinition Height="Auto" />
                    </Grid.RowDefinitions>
                    <local:CustomerReportGridHeader Grid.Row="0" />
                    <local:ReportItemsControl ItemsSource="{Binding DataDisplay}" Grid.Row="1" />
                </Grid>
            </DataTemplate>
            <DataTemplate DataType="{x:Type local:AppendixAReportPageViewModel}">
                <FixedPage DataContext="{Binding Content}" />
            </DataTemplate>
        </ContentControl.Resources>
    </ContentControl>
0

There are 0 best solutions below