This question is locked. New answers and comments are not allowed.
Hi,
I m trying to embed different controls in window's headed part and window is working fine but problem is all controls appeared in disable mode, code is as follows:
<telerik:RadWindow x:Name="windowMenu" HorizontalAlignment="Stretch" Height="400" VerticalAlignment="Stretch" Background="#FF333333" CanClose="False" Left="215" Top="80" FontFamily="Arial" FontSize="10.667">
<telerik:RadWindow.HeaderTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal">
<telerik:RadSplitButton x:Name="splitbuttonSelectView" Content="Select view" />
<sdk:AutoCompleteBox Margin="30,3,0,3" Width="250"/>
<TextBlock x:Name="textblockSearch" Margin="10,10,0,9" Text="Search" />
<telerik:RadButton Content="Reset Canvas" Margin="30,3,0,3" FontFamily="Arial" FontSize="12"/>
<telerik:RadSlider Margin="30,7,0,7" Width="170"/>
<TextBlock x:Name="textblockZoom" Margin="10,10,0,9" Text="Zoom" />
<telerik:RadSlider Margin="30,7,0,7" Width="170"/>
<TextBlock x:Name="textblockRelaxation" Margin="10,10,14,9" Text="Relaxation" />
<!--</telerik:RadToolBar>-->
</StackPanel>
</DataTemplate>
</telerik:RadWindow.HeaderTemplate>
</telerik:RadWindow>
Thank you in advance..