I am trying to get my feet wet with Telerik's controls as we are poised to get the Premium Package. I found a nice How To video here(Brian Lagunas) that is very applicable to my environment however I am struggling to use Telerik's controls as the video maker uses Infragistics. The key sticking point is the below.
In his video there is a control for "Ribbon Window Content Host" that doesn't seem to have a counterpart in Telerik. The code above gives me a design time exception of "The Property Content is set more then once".
Can anyone show me what I am doing wrong or missing? This app is meant to be a proof of concept so I can justify to my boss purchasing this tool set.
<
telerik:RadRibbonWindow
x:Class
=
"IgOutlook.Shell"
xmlns:prism
=
"http://www.codeplex.com/prism"
Title
=
"Shell"
Height
=
"300"
Width
=
"300"
xmlns:telerik
=
"http://schemas.telerik.com/2008/xaml/presentation"
>
<
telerik:RadRibbonView
Name
=
"radRibbonView1"
prism:RegionManager.RegionName
=
"RibbonTabRegion"
>
<
telerik:RadRibbonView.ApplicationMenu
>
<
telerik:ApplicationMenu
/>
</
telerik:RadRibbonView.ApplicationMenu
>
<
telerik:RadRibbonView.QuickAccessToolBar
>
<
telerik:QuickAccessToolBar
/>
</
telerik:RadRibbonView.QuickAccessToolBar
>
</
telerik:RadRibbonView
>
<
DockPanel
LastChildFill
=
"True"
>
<
telerik:RadOutlookBar
DockPanel.Dock
=
"Left"
Width
=
"200"
prism:RegionManager.RegionName
=
"OutlookBarGroupRegion"
/>
<
ContentControl
prism:RegionManager.RegionName
=
"ContentRegion"
Margin
=
"1,3,3,3"
/>
</
DockPanel
>
</
telerik:RadRibbonWindow
>
In his video there is a control for "Ribbon Window Content Host" that doesn't seem to have a counterpart in Telerik. The code above gives me a design time exception of "The Property Content is set more then once".
Can anyone show me what I am doing wrong or missing? This app is meant to be a proof of concept so I can justify to my boss purchasing this tool set.