Intersoft ClientUI Documentation
NewTransitionEffect Property
See Also  Example Send Feedback
Intersoft.Client.UI.Navigation Namespace > UXFrame Class : NewTransitionEffect Property






Gets or sets the transition effect when a new navigation occurs.

Syntax

Visual Basic (Declaration) 
<CategoryAttribute("Common Properties")>
Public Property NewTransitionEffect As TransitionEffect
Visual Basic (Usage)Copy Code
Dim instance As UXFrame
Dim value As TransitionEffect
 
instance.NewTransitionEffect = value
 
value = instance.NewTransitionEffect
C# 
[CategoryAttribute("Common Properties")]
public TransitionEffect NewTransitionEffect {get; set;}
Delphi 
public read-write property NewTransitionEffect: TransitionEffect; 
JScript 
CategoryAttribute("Common Properties")
public function get,set NewTransitionEffect : TransitionEffect
Managed Extensions for C++ 
[CategoryAttribute("Common Properties")]
public: __property TransitionEffect get_NewTransitionEffect();
public: __property void set_NewTransitionEffect( 
   TransitionEffect value
);
C++/CLI 
[CategoryAttribute("Common Properties")]
public:
property TransitionEffect NewTransitionEffect {
   TransitionEffect get();
   void set (    TransitionEffect value);
}

Example

The following example shows how to customize the visual transitions for new navigation mode.
XAMLCopy Code
<Intersoft:UXFrame Name="ContentFrame"
                   EnablePageTransition="True"
                   NewTransitionEffect="ZoomIn">
</Intersoft:UXFrame>

Remarks

When the automatic navigation direction feature is enabled, the visual transition properties are reused to provide streamlined settings for the visual transitions. Since the automatic detection feature uses a more advanced logic to determine the direction of the new navigation, certain transition properties may have different meaning.

The following table describes the new mapping between the navigation direction and transition properties when AutoDetectNavigationDirection feature is enabled.

Navigation Direction Applied Transition Property
New NewTransitionEffect
Back BackTransitionEffect
Forward ForwardTransitionEffect
Unknown DefaultTransitionEffect

Notice that the DefaultTransitionEffect has different meaning when the detection feature is enabled. With the feature disabled, the DefaultTransitionEffect is applied for new navigation request. In contrast, the DefaultTransitionEffect is only applied for unknown direction when the AutoDetectNavigationDirection feature is enabled.

For more information, see Advanced Features in ClientUI Navigation Framework.

Requirements

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

© 2012 All Rights Reserved.