I'm developing a WPF application with the same grid layout for every page.
Since I don't want to rewrite it in every page, I was wondering if it is possible to declare the layout in a Resource Dictionary and include the dictionary in every page, in order to use the grid like this:
<Page ...
>
<Grid>
<Grid.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="/Resources/Style.xaml" />
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Grid.Resources>
<Button Name="ButtonReturn" Grid.Column="3" Grid.Row="1" >Click</Button>
</Grid>
</Page>
Without having to specify the column layout again.
Is this possible?