.NET 4.0
Telerik.Windows.Controls v4.0.30319
During design time, RadPaneGroup throws an exception, but the application builds and runs successfully. Very rarely, the designer will load successfully. The exception thrown in the designer is shown as a flyout panel within the designer stage area and is as follows:
Here's the XAML:
To my knowledge, I am not using metro for anything. Does anyone have any ideas?
Telerik.Windows.Controls v4.0.30319
During design time, RadPaneGroup throws an exception, but the application builds and runs successfully. Very rarely, the designer will load successfully. The exception thrown in the designer is shown as a flyout panel within the designer stage area and is as follows:
Type reference cannot find type named '{clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls}MetroTouchTheme'.
at MS.Internal.Xaml.Context.ObjectWriterContext.ServiceProvider_Resolve(String qName)
at MS.Internal.Xaml.ServiceProviderContext.System.Windows.Markup.IXamlTypeResolver.Resolve(String qName)
at System.Windows.Markup.TypeTypeConverter.ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, Object value)
at System.Windows.Baml2006.TypeConverterMarkupExtension.ProvideValue(IServiceProvider serviceProvider)
at MS.Internal.Xaml.Runtime.ClrObjectRuntime.CallProvideValue(MarkupExtension me, IServiceProvider serviceProvider)
Here's the XAML:
<
Window
x:Class
=
"ININ.PSO.MiniClient.Main.UI.Media_Desktop.MediaDesktop"
xmlns:telerik
=
"clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.Docking"
Title
=
"Media Desktop"
Height
=
"569"
Width
=
"858"
Loaded
=
"Window_Loaded"
Icon
=
"/Images/16/window_sidebar.png"
>
<
Grid
>
<
telerik:RadDocking
Name
=
"radDocking"
Background
=
"AliceBlue"
>
<
telerik:RadDocking.DocumentHost
>
<
telerik:RadSplitContainer
>
<
telerik:RadPaneGroup
>
<
telerik:RadPane
Header
=
"WAW 1"
>
<
TextBlock
Text
=
"Some Text"
/>
</
telerik:RadPane
>
</
telerik:RadPaneGroup
>
</
telerik:RadSplitContainer
>
</
telerik:RadDocking.DocumentHost
>
</
telerik:RadDocking
>
</
Grid
>
</
Window
>
To my knowledge, I am not using metro for anything. Does anyone have any ideas?