This question is locked. New answers and comments are not allowed.
Hi
I have RadOutlookbar in my project and i try put in RadPane
How can i bind these control's width to each other ?
That means When i resize RadPane in Two mode(autohide & Pane) RadOutlookbar is changed
my sample code
I have RadOutlookbar in my project and i try put in RadPane
How can i bind these control's width to each other ?
That means When i resize RadPane in Two mode(autohide & Pane) RadOutlookbar is changed
my sample code
<telerik:RadDocking> <telerik:RadDocking.DocumentHost> <telerik:RadSplitContainer> <telerik:RadPaneGroup SizeChanged="RadPaneGroup_SizeChanged_1"> <telerik:RadPane Header="Description" Name="test" SizeChanged="RadPane_SizeChanged_1" MediaCommand="RadPane_MediaCommand_1" > </telerik:RadPane> </telerik:RadPaneGroup> </telerik:RadSplitContainer> </telerik:RadDocking.DocumentHost> <telerik:RadSplitContainer> <telerik:RadPaneGroup> <telerik:RadPane Header="test" Name="test1" IsPinned="False" AutoHideWidth="{Binding Width, ElementName=outbarSubSystems, Mode=TwoWay}" > <telerik:RadOutlookBar x:Name="outbarSubSystems" MinContentHeight="300" HorizontalAlignment="Left" telerik:StyleManager.Theme="Office_Blue" SizeChanged="outbarSubSystems_SizeChanged_1" Width="{Binding AutoHideWidth, ElementName=test1, Mode=TwoWay}" Height="Auto" MinimizedAreaVisibility="Visible" VerticalAlignment="Stretch" MinimizedButtonContent="test" MinimizedWidthThreshold="55" MinimizedWidth="55" IsMinimized="False"/> </telerik:RadPane> </telerik:RadPaneGroup> </telerik:RadSplitContainer> </telerik:RadDocking>