Width of grid columns on different fixed pages

128 views Asked by At

I have a structure of items like this for example:

<FixedDocument Grid.IsSharedSizeScope="True">
   <PageContent>
      <FixedPage>
         <Grid Width="500" Height="200">
            <Grid.ColumnDefinitions>
               <ColumnDefinition Width="100" SharedSizeGroup="A"/>
               <ColumnDefinition/>
            </Grid.ColumnDefinitions>
         </Grid>
      </FixedPage>
   </PageContent>
   <PageContent>
      <FixedPage>
         <Grid Width="500" Height="200">
            <Grid.ColumnDefinitions>
               <ColumnDefinition SharedSizeGroup="A"/>
               <ColumnDefinition/>
            </Grid.ColumnDefinitions>
         </Grid>
      </FixedPage>
   </PageContent>
</FixedDocument>

Why doesn't width of first column of grids have a same value on different fixed pages?

0

There are 0 answers