We have acontent pane while decking state we can set the minimum width for the split pan and content pane will take this minimum width.But in fly out state we can't provide the minimum width.Is there any solution for this?
Hi Vishnu,This may be possible; are you trying to achieve this behavior with WPF or Silverlight?Sincerely,Chris KDeveloper Support EngineerInfragistics, Inc.www.infragistics.com/support
I have tried this with WPF.
Code:
<igDock:SplitPane SplitterOrientation="Vertical" MinWidth="160" MaxWidth="250" Width="220"> <igDock:ContentPane CloseButtonVisibility="Collapsed" AllowDocking="False" AllowClose="False" AllowFloatingOnly="False" AllowPinning="True" WindowPositionMenuVisibility="Visible" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Header="{tp:Localize Name=BrowserTitle}" Regions:RegionManager.RegionName="{x:Static Main:MainPanelRegionNames.BROWSER}"> </igDock:ContentPane> </igDock:SplitPane>