Art Kedzierski
                                            
                                    
    Top achievements
    
            
                
                Rank 2
            
    
                                        
                                        Art Kedzierski
                                        asked on 25 Mar 2010, 01:43 PM
                                    
                                First attempt to use the new control and I get an error I've never seen before (and apparently no one in the internet has either). What does it mean?
'TransitionProvider' type does not have a public TypeConverter class.
                                'TransitionProvider' type does not have a public TypeConverter class.
4 Answers, 1 is accepted
0
                                Accepted
Hello Art,
Could you please paste here the XAML or your page? I suppose that you are not setting the Transition property right. It cannot be set inline:
<telerik:RadTransitionControl>
<telerik:RadTransitionControl.Transition>
<effects:FadeTransition />
</telerik:RadTransitionControl.Transition>
</telerik:RadTransitionControl>
where telerik and effects namespaces are declared like this:
xmlns:telerik="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls"
xmlns:effects="clr-namespace:Telerik.Windows.Controls.TransitionEffects;assembly=Telerik.Windows.Controls"
Regards,
Valeri Hristov
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
                                        Could you please paste here the XAML or your page? I suppose that you are not setting the Transition property right. It cannot be set inline:
<telerik:RadTransitionControl>
<telerik:RadTransitionControl.Transition>
<effects:FadeTransition />
</telerik:RadTransitionControl.Transition>
</telerik:RadTransitionControl>
where telerik and effects namespaces are declared like this:
xmlns:telerik="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls"
xmlns:effects="clr-namespace:Telerik.Windows.Controls.TransitionEffects;assembly=Telerik.Windows.Controls"
Regards,
Valeri Hristov
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
0
                                
                                                    Art Kedzierski
                                                    
                                            
    Top achievements
    
            
                
                Rank 2
            
    
                                                
                                                answered on 25 Mar 2010, 03:22 PM
                                            
                                        That was the answer, thanks! I look forward to seeing documentation. 
                                        0
                                
                                                    mark
                                                    
                                            
    Top achievements
    
            
                
                Rank 1
            
    
                                                
                                                answered on 02 Apr 2010, 10:01 PM
                                            
                                        So what is the correct way to set the transition property?
thanks.
                                        thanks.
0
                                
                                                    Art Kedzierski
                                                    
                                            
    Top achievements
    
            
                
                Rank 2
            
    
                                                
                                                answered on 05 Apr 2010, 02:24 PM
                                            
                                        Well, mine looks like this now and works great:
    
My error was, as guessed, trying to set it inline like:
    
                                        | <telerik:RadTransitionControl Name="_panelTrans" Canvas.Left="0" Canvas.Top="0" Height="1080" Width="1920" Duration="00:00:03"> | 
| <telerik:RadTransitionControl.Transition> | 
| <effects:LinearFadeTransition /> | 
| </telerik:RadTransitionControl.Transition> | 
| </telerik:RadTransitionControl> | 
My error was, as guessed, trying to set it inline like:
| <telerik:RadTransitionControl Name="_panelTrans" Transition="LinearFadeTransition" /> |