I would like to create a Google Chrome like application with tabs positioned in the application header.
Does the RadWindow provide any Features to achieve this?
It's pretty easy to position it right, but the tabs become unclickable this way:
<Grid Margin=
"0,-23,0,0"
>
<telerik:RadTabControl HeaderBackground=
"{x:Null}"
x:Name=
"radTabControl"
HorizontalAlignment=
"Stretch"
VerticalAlignment=
"Stretch"
Grid.ColumnSpan=
"2"
>
<telerik:RadTabItem x:Name=
"RadTabItem"
Header=
"RadTabItem"
Height=
"24"
Width=
"100"
>
<Grid Background=
"Transparent"
/>
</telerik:RadTabItem>
</telerik:RadTabControl>
</Grid>