Hello
I need to draw a border over the RadRibbonWindow, excluding the TitleBar.
I've attached an image where on the left you can see what I'm actually doing and on the right what I want to achieve.
How can I achieve that?
Code:
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition />
</Grid.RowDefinitions>
<telerik:RadRibbonView ApplicationName="DocumentSelector">
<telerik:RadRibbonTab Header="Documents" />
</telerik:RadRibbonView>
<Border Grid.Row="0"
Grid.RowSpan="2">
<Border.Background>
<SolidColorBrush Opacity="0.5" Color="Red" />
</Border.Background>
</Border>
</Grid>
I need to draw a border over the RadRibbonWindow, excluding the TitleBar.
I've attached an image where on the left you can see what I'm actually doing and on the right what I want to achieve.
How can I achieve that?
Code:
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition />
</Grid.RowDefinitions>
<telerik:RadRibbonView ApplicationName="DocumentSelector">
<telerik:RadRibbonTab Header="Documents" />
</telerik:RadRibbonView>
<Border Grid.Row="0"
Grid.RowSpan="2">
<Border.Background>
<SolidColorBrush Opacity="0.5" Color="Red" />
</Border.Background>
</Border>
</Grid>