I apologise if this is a silly question however we have just upgraded our Rad Controls for Silverlight (Whilst updgrading to VS2010) and after changing my reference to the Telerik.Windows.Controls.dll, from version 2009.3.1103.1030 to 2011.1.315.1040, it no longer reconises the RadPage control.
So my question is, Is this no longer supported? If so is there any documentation on this, which will help us work out what we can use instead?
Obviosuly currently our Solution will not build, which means we have to go back to using the old "RadControls for Silverlight Q3 2009" DLLs.
Cheers,
Paul.
7 Answers, 1 is accepted
Are you talking about RadDataPager, since we have never had a control called RadPage?
All the best,Ross
the Telerik team
Cheers,
Paul :)
using
Telerik.Windows.Controls;
namespace
Exclusions.RIA
{
public
partial
class
Shell : RadPage
{
public
Shell()
{
InitializeComponent();
}
}
}
---------------------------------------------------------------------------------
#region Assembly Telerik.Windows.Controls.dll, v2.0.50727
// C:\Program Files\Telerik\RadControls for Silverlight Q3 2009\Binaries\Silverlight\Telerik.Windows.Controls.dll
#endregion
using
System;
using
System.Windows.Controls;
namespace
Telerik.Windows.Controls
{
// Summary:
// RadPage is the class that represent navigation page in page navigation.It
// can be.used with NavigationService, RadNavigationButton or RadFrame for PageNavigation.
// You have to use RadPage classes in order to have page navigation.
public
class
RadPage : UserControl, IFrame
{
// Summary:
// Initializes a new instance of the RadPage class.
public
RadPage();
// Summary:
// Gets or sets the RadPage`s child RadFrameContainer if there is any on the
// page.
public
virtual
Panel ChildContainer {
get
;
set
; }
//
// Summary:
// Identifies the frame inside the NavigationUri.
public
string
NavigationIdentifier {
get
;
set
; }
//
// Summary:
// Gets or sets the RadFramecontainer in which tha RadPage is placed.
public
virtual
Panel ParentContainer {
get
;
set
; }
//
// Summary:
// Gets or sets the title of the WebPage.
public
string
Title {
get
;
set
; }
}
}
RadNavigation is obsolete from a long time ago.
You can easily replace the telerik RadPage with the built-in Page class. (It is part of the Silverlight SDK). I believe you'll easily manage to replace Telerik's navigation with the built-in.
You can read the msdn articleabout Navigation for more information.
Sorry for any inconvenience. If you have further questions please let us know.
Ross
the Telerik team
It is supported for now, but will not be supported in the future versions. The reason is that you can do this easily with the built-in Siverlight navigation.
For now you can still use it, but if you are doing long term development it will be best if you migrate to the Silverlight navigation framework. (it won't take you a lot of time).
Sorry for any inconvenience.
Miro Miroslavov
the Telerik team