I have a window named InstallerView
and wish to display its contents within another window via ContentControl
. What is the correct syntax as currently this doesnt work?
<ContentControl Content="{StaticResource ResourceKey=InstallerView}" Grid.Column="0" Grid.Row="1" Height="430" />
The window is defined as such
<Window x:Class="MyBootstrapper.InstallerView" .... >