Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / Silverlight > Installer and Visual Studio Extensions > Upgraded to 2011.1.1116 -- all kinds of problems?

Not answered Upgraded to 2011.1.1116 -- all kinds of problems?

Feed from this thread
  • Rob Ainscough avatar

    Posted on Dec 9, 2011 (permalink)

    I got prompt to upgrade to the latest version of RadControls when I opened my project.  I ran the Upgrade Wizard, in shows NO FAILED items.  So I clean my solution, and then try to build my solution and I have a 40+ errors in my solution??  They appear to be all related to RadGauge references -- missing assembly?? 

    I have "xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"  ... did RadGauge get moved to some other assembly?

    Rob

    Reply

  • Andrey Andrey admin's avatar

    Posted on Dec 14, 2011 (permalink)

    Hello Rob Ainscough,

    Since the 2011.Q3 release we introduced a new gauge control. It is almost new control redesigned from scratch. Some of its features are similar to the old control’s features but they are implemented in absolutely different way (using different set of properties), some features are completely new.

    Our demo application now references the new gauge control and demonstrates its features. We are working on the help topics so they describe features of the new control as well.

    We strongly recommend that you use the new gauge control in your new applications. We also would recommend replacing the old control with new one in existing applications if there is a timeframe for this task. To avoid cross-controls problems we’ve removed old control from the default Telerik namespace. But it still can be used in your XAML as following:

    <UserControl x:Class="OldGaugeControl.MainPage"
        xmlns:gauge="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.Gauge"
        xmlns:gauges="clr-namespace:Telerik.Windows.Controls.Gauges;assembly=Telerik.Windows.Controls.Gauge"
        mc:Ignorable="d"
        d:DesignHeight="300" d:DesignWidth="400">
        <Grid x:Name="LayoutRoot" Background="White">
            <gauge:RadGauge>
                <gauges:RadialGauge>
                    <gauges:RadialScale Name="radialScale">
                        <gauges:IndicatorList>
                            <gauges:Needle Value="75" />
                        </gauges:IndicatorList>
                    </gauges:RadialScale>
                </gauges:RadialGauge>
            </gauge:RadGauge>
        </Grid>
    </UserControl>


    All the best,
    Andrey Murzov
    the Telerik team

    Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get it now >>

    Reply

Back to Top

Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / Silverlight > Installer and Visual Studio Extensions > Upgraded to 2011.1.1116 -- all kinds of problems?