Skip to content

Add status bar to Main window in Prism WPF generated template #4661

Closed Answered by mrlacey
avazon asked this question in Q&A
Discussion options

You must be logged in to vote

You can easily add such a grid.

Assuming you're using a HamburgerMenu, you can put it inside the content

            <controls:HamburgerMenu.Content>
                <Grid>
                    <Grid.RowDefinitions>
                        <RowDefinition Height="*" />
                        <RowDefinition Height="30" />
                    </Grid.RowDefinitions>
                    <ContentControl x:Name="hamburgerMenuContentControl" />
                    <TextBlock Grid.Row="1" Background="BlueViolet" Text="MY STATUS BAR" />
                </Grid>
            </controls:HamburgerMenu.Content>

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@avazon
Comment options

Answer selected by mikebattista
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants