Hi,
I'm adding Docking to my app with the following structure (all unnecessary properties removed):
<telerik:RadDocking >
<telerik:RadDocking.DocumentHost>
<Grid/>
</telerik:RadDocking.DocumentHost>
<telerik:RadSplitContainer Orientation="Horizontal" InitialPosition="DockedBottom">
<telerik:RadPaneGroup>
<telerik:RadPane>
<Grid/>
</telerik:RadPane>
</telerik:RadPaneGroup>
</telerik:RadSplitContainer>
</telerik:RadDocking>
When I'm creating styles for RadPane and RadPaneGroup, I'm constantly getting exceptions in Design view of Expression Blend and Visual studio that looks like:
"InvalidOperationException: Can only base on a Style with target type that is base type 'RadPaneGroup'."
As a result, I can't see my control in Design View and can't edit control's property in Properties pane visually. The style is looking like this:
<Style TargetType="telerik:RadPaneGroup" BasedOn="{StaticResource RadPaneGroupStyle}">
...
</Style>
What's wrong?
Thank you!
I'm adding Docking to my app with the following structure (all unnecessary properties removed):
<telerik:RadDocking >
<telerik:RadDocking.DocumentHost>
<Grid/>
</telerik:RadDocking.DocumentHost>
<telerik:RadSplitContainer Orientation="Horizontal" InitialPosition="DockedBottom">
<telerik:RadPaneGroup>
<telerik:RadPane>
<Grid/>
</telerik:RadPane>
</telerik:RadPaneGroup>
</telerik:RadSplitContainer>
</telerik:RadDocking>
When I'm creating styles for RadPane and RadPaneGroup, I'm constantly getting exceptions in Design view of Expression Blend and Visual studio that looks like:
"InvalidOperationException: Can only base on a Style with target type that is base type 'RadPaneGroup'."
As a result, I can't see my control in Design View and can't edit control's property in Properties pane visually. The style is looking like this:
<Style TargetType="telerik:RadPaneGroup" BasedOn="{StaticResource RadPaneGroupStyle}">
...
</Style>
Thank you!