I'm currently testing out the Q1 2015 Trial before deciding to completely upgrade my application. One of the views in the application uses the RadRadialGauge with an interactive RadialScale. A custom ShaderEffect effect is applied to the root Grid in the application. When I navigate to the page containing the gauge, my application crashes with a UCEERR_RENDERTHREADFAILURE exception. If, however, I use one of the included effects (DropShadow or Blur) the app doesn't crash but the needle is no longer interactive. I have a sample solution I can provide if desired and will provide basic xaml below.
Any thoughts on what I might be able to do to either work around this problem or get an assurance this can be fixed? I'm considering the upgrade for some of the new WPF Reporting tools and I'd hate to not be able to do it because of the RadialGauge.
Sample MainWindow.xaml:
<
Window
x:Class
=
"RadialGaugeTest.MainWindow"
xmlns:telerik
=
"http://schemas.telerik.com/2008/xaml/presentation"
xmlns:aldis
=
"http://schemas.aldiscorp.com/xaml/"
Title
=
"MainWindow"
Height
=
"350"
Width
=
"525"
>
<
Grid
>
<!-- DropShadow -->
<!--<
Grid.Effect
>
<
DropShadowEffect
ShadowDepth
=
"5"
Color
=
"#3fff"
/>
</
Grid.Effect
>-->
<!-- Blur -->
<!--<
Grid.Effect
>
<
BlurEffect
Radius
=
"0.2"
/>
</
Grid.Effect
>-->
<
telerik:RadRadialGauge
Grid.Row
=
"1"
Grid.Column
=
"1"
x:Name
=
"radialGauge"
telerik:StyleManager.Theme
=
"Windows8"
>
<
telerik:RadialScale
Min
=
"1"
Max
=
"12"
IsInteractive
=
"True"
>
<
telerik:RadialScale.Indicators
>
<
telerik:Needle
/>
<
telerik:Pinpoint
/>
</
telerik:RadialScale.Indicators
>
</
telerik:RadialScale
>
</
telerik:RadRadialGauge
>
</
Grid
>
</
Window
>