Leadtools.Windows.Controls Send comments on this topic. | Back to Introduction - LEADTOOLS WPF | Help Version 16.5.9.25
Transition Property
See Also 
Leadtools.Windows.Controls Namespace > BitmapSourceViewer Class : Transition Property





Gets or sets the TransitionBase that specifies the type of transition to be applied on BitmapSourceViewer.

Syntax

Visual Basic (Declaration) 
Public Property Transition As TransitionBase
Visual Basic (Usage)Copy Code
Dim instance As BitmapSourceViewer
Dim value As TransitionBase
 
instance.Transition = value
 
value = instance.Transition
C# 
public TransitionBase Transition {get; set;}
C++/CLI 
public:
property TransitionBase Transition {
   TransitionBase get();
   void set (TransitionBase value);
}
XAML Attributes Usage 

<object TransitionBase=Leadtools.Windows.Media.Transitions.TransitionBase .../>

Dependencies Property Information 

Identifier field

TransitionProperty

Metadata properties set to true

None

XAML Property Element Usage 

<object> <object.TransitionBase> <TransitionBase .../> </object.TransitionBase> </object>

XAML Attributes Usage 

<object TransitionBase=Leadtools.Windows.Media.Transitions.TransitionBase .../>

Dependencies Property Information 

Identifier field

TransitionProperty

Metadata properties set to true

None

XAML Property Element Usage 

<object> <object.TransitionBase> <TransitionBase .../> </object.TransitionBase> </object>

Return Value

The TransitionBase that describes how the tranition will be applied for this BitmapSourceViewer.

Example

For XAML example, refer to BlindTransition.

For C#/VB examples, refer to BlindTransition.

Remarks

You can derive your own class from TransitionBase, and then set this property to an instance of that class to perform your own TransitionBase

Requirements

Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Vista, and Windows Server 2003 family

See Also