Our ultimate goal is to have a pane - the "Zone Editor" be collapsed by default but fly out once a variable is set - we have achieved part of this behavior using the code segment below. However, when we lose focus on the pane, it flies away again, even if the IsActive variable is set to true. Is there a way to prevent this?
<telerik:RadSplitContainer InitialPosition="DockedRight" Orientation="Horizontal" >
<telerik:RadPaneGroup Name="ZoneEditorPane">
<zoneEditor:ZoneEditor IsActive="{Binding DataContext.IsZoneEditorVisible, ElementName=DockingControl, Mode=TwoWay}" AutoHideWidth="1075" />
</telerik:RadPaneGroup>
</telerik:RadSplitContainer>