This is a migrated thread and some comments may be shown as answers.

Transaction Control With Silverlight Page Navigation

10 Answers 248 Views
TransitionControl
This is a migrated thread and some comments may be shown as answers.
krishna surapaneni
Top achievements
Rank 2
krishna surapaneni asked on 19 Mar 2010, 07:46 AM
Hi,

The TransactionControl looks so beautiful with sever transaction effects. 

How can i Use Transaction Control in Silverlight Page Navigation . if possible Give an Detail Example...

10 Answers, 1 is accepted

Sort by
0
Accepted
Miroslav Nedyalkov
Telerik team
answered on 24 Mar 2010, 03:24 PM
Hello Krishna,

 Please refer to the attached project.

Greetings,
Miroslav Nedyalkov
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
krishna surapaneni
Top achievements
Rank 2
answered on 25 Mar 2010, 06:00 AM
Hi Miroslav Nedyalkov 

How can in Inverse Slide and Zoom Transition  for pagination forward and backward use
0
Valeri Hristov
Telerik team
answered on 25 Mar 2010, 08:27 AM
Hi krishna,

This feature is not available yet, but we will add it in the near future.

All the best,
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
krishna surapaneni
Top achievements
Rank 2
answered on 30 Mar 2010, 01:22 PM
Hi Miroslav Nedyalkov 

It is Not Working with Silverlight 4 rc Builds.. Content is not found Exception Throws
0
Accepted
Miroslav Nedyalkov
Telerik team
answered on 30 Mar 2010, 02:42 PM
Hi Krishna,

 The ControlTemplate was missing its TargetType attribute. Here is the fix:

<ControlTemplate TargetType="navigation:Frame">
    <telerik:RadTransitionControl Content="{TemplateBinding Content}"
            ContentTemplate="{TemplateBinding Content}" />
</ControlTemplate>

All the best,
Miroslav Nedyalkov
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
Neo
Top achievements
Rank 1
answered on 13 May 2010, 01:07 PM
I was able to change the animation by adding this under the <telerik:RadTransitionControl> node

                    <telerik:RadTransitionControl.Transition>
                        <telerikTransitions:SlideAndZoomTransition />
                    </telerik:RadTransitionControl.Transition>

I would like to change the navigator to a regular button. Is there any way I can get the navigateUri property on a button instead of a HyperLinkButton?

mc
0
Miroslav Nedyalkov
Telerik team
answered on 17 May 2010, 12:03 PM
Hi Neo,

 What you need to do is to hook-up to the Click event of the button and call the Navigate method of the Frame you want to navigate and pass it a URI to the page you want to navigate to.

Hope this helps!

Best wishes,
Miroslav Nedyalkov
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
Neo
Top achievements
Rank 1
answered on 24 May 2010, 03:27 AM
ok . that works...
            Uri Page1 = new Uri("/Page1.xaml", UriKind.Relative);
            navFrame.Navigate(Page1);
0
HT
Top achievements
Rank 1
answered on 16 Feb 2011, 06:56 PM
XAML:

 

<navigation:Frame.Template>
    <ControlTemplate TargetType="navigation:Frame">
        <telerik:RadTransitionControl Content="{TemplateBinding Content}"
            ContentTemplate="{TemplateBinding Content}" >
            <telerik:RadTransitionControl.Transition>
                <telerikTransitions:SlideAndZoomTransition />
            </telerik:RadTransitionControl.Transition>
        </telerik:RadTransitionControl>
    </ControlTemplate>
</navigation:Frame.Template>

How can I programmatically change the SlideDirection of 'SlideAndZoomTransition'?

Or change the transition effect?

Thank you,
H.

0
Miroslav Nedyalkov
Telerik team
answered on 21 Feb 2011, 05:15 PM
Hi Hamid,

 What you need to do is to change the value of the Transition property of the RadTransitionControl. This property is of type TransitionProvider. One of the implementations is SlizeAndZoomTransition. Here is an example:

transitionControl.Transition = new SlideAndZoomTransition { SlideDirection = FlowDirection.RightToLeft };

All the best,
Miroslav Nedyalkov
the Telerik team
Registration for Q1 2011 What’s New Webinar Week is now open. Mark your calendar for the week starting March 21st and book your seat for a walk through all the exciting stuff we ship with the new release!
Tags
TransitionControl
Asked by
krishna surapaneni
Top achievements
Rank 2
Answers by
Miroslav Nedyalkov
Telerik team
krishna surapaneni
Top achievements
Rank 2
Valeri Hristov
Telerik team
Neo
Top achievements
Rank 1
HT
Top achievements
Rank 1
Share this question
or