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
Thanks...Thanks Alot!!!
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,