Hi
We have a radoutlookbar with some items in it When te user click on the minimize/restore-button ((1) in attached image) it works perfect, the bar and all it content moves out and in. (see attached image).
When user clicks on the "header" of the outlookbar ((2) in attached image) strange things happen. First click is most often than only the first user control in the first item slides out, after that, sometimes the entire outlookbar is stuck half minimized and we have to restart the application.
First of all, Im I doing something wrong in my xaml (below)?
If not, is there any setting where I can make the rest of the outlookbar to minimiza/restore or could I catch the event and programmatically restore it? (We are using te MVVM approach)
--xaml---------------------------------------
<telerik:RadOutlookBar DockPanel.Dock="Right" Width="600" IsVerticalResizerVisible="True" MinimizedButtonContent="Details" IsMinimized="True" >
<telerik:EventToCommandBehavior.EventBindings>
<telerik:EventBinding EventName="SelectionChanged" Command="{Binding DrawerItemChangedCommand}" PassEventArgsToCommand="True"/>
<telerik:EventBinding EventName="Restored" Command="{Binding ExpandCollapseDrawerCommand}" PassEventArgsToCommand="True"/>
<telerik:EventBinding EventName="Minimized" Command="{Binding ExpandCollapseDrawerCommand}" PassEventArgsToCommand="True"/>
</telerik:EventToCommandBehavior.EventBindings>
<modelview:OneView DataContext="{Binding OneViewModel}"/>
<telerik:RadOutlookBarItem Header="Another">
<modelview:AnotherView DataContext="{Binding AnotherViewModel}" />
</telerik:RadOutlookBarItem>
<telerik:RadOutlookBarItem Header="LastViewIPromise">
<moCompliance:LastView DataContext="{Binding LastViewModel}" />
</telerik:RadOutlookBarItem>
</telerik:RadOutlookBar>
-------------------------------------------------
Thanks in advance, Robert