Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
260
Resizing the page after outlookbar is minimized
posted

Hi,

I am using outlookbar for the navigation in my page I need to resize the rest of the area when navigation pane is minimized

 

Can anyone help me how can I design my layout? Pleas post the xaml if you can

 

Same look and feel of TeamForce site

 

Thanks

-Sajin

Parents
  • 5595
    Suggested Answer
    posted

    Hi,

    This should not depend on the OutlookBar itself, but rather on the layout, so I guess what you need is something like the following:

     

        <Grid x:Name="LayoutRoot" Background="White">

            <Grid.ColumnDefinitions>

                <ColumnDefinition Width="Auto"/>

                <ColumnDefinition/>

            </Grid.ColumnDefinitions>

            <ig:XamWebOutlookBar>

                <ig:OutlookBarGroup Header="SalesGroup"/>

            </ig:XamWebOutlookBar>

            <Rectangle Grid.Column="1" Fill="Red" HorizontalAlignment="Stretch" VerticalAlignment="Stretch"/>

        </Grid>

     

    HTH,

Reply Children
No Data