Class RadRotatorItem
The RadItem that implements the actual Rad
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.UI.dll
Syntax
public class RadRotatorItem : RadItem, INotifyPropertyChanged, ICustomTypeDescriptor, ISupportSystemSkin, IComponent, IDisposable, IBindableComponent, ISupportDrag, ISupportDrop, IShortcutProvider, IStylableElement, IStylableNode
Constructors
RadRotatorItem()
Declaration
public RadRotatorItem()
Fields
fadeInProperty
Properties
AnimationFrames
Gets or Sets the swap animation's frames number
Declaration
public int AnimationFrames { get; set; }
Property Value
System.
|
CurrentIndex
Gets or Sets the index of the current item. Note: When setting the current item, the old and the new item will be swapped.
Declaration
public int CurrentIndex { get; set; }
Property Value
System.
|
See Also
CurrentItem
Gets the current item.
Declaration
public RadItem CurrentItem { get; }
Property Value
See Also
DefaultItem
Gets or Sets the Rad
Declaration
public RadItem DefaultItem { get; set; }
Property Value
See Also
fadeIn
Declaration
public List<AnimatedPropertySetting> fadeIn { get; set; }
Property Value
System.
|
Interval
Gets or Sets the interval between consequetive rotation animations.
Declaration
public int Interval { get; set; }
Property Value
System.
|
Items
Gets the collection of Rad
Declaration
public RadItemOwnerCollection Items { get; }
Property Value
LocationAnimation
Gets or Sets value defining the initial position of the incomming item and the final position of the outgoing item. Note: The position is relative, in the range [-1, 1] for each of the components (X, Y). Value of positive or negative 1 means that the object will not be in the visible area before the animation begins (for the incomming item) or after it ends (for the outgoing item)
Declaration
public SizeF LocationAnimation { get; set; }
Property Value
System.
|
OpacityAnimation
Gets or Sets value indicating whether opacity will be animated when switching frames
Declaration
public bool OpacityAnimation { get; set; }
Property Value
System.
|
Running
Gets or Sets value indicating whether the Rad
Declaration
public bool Running { get; set; }
Property Value
System.
|
See Also
ShouldStopOnMouseOver
Gets or sets whether RadRotator should stop rotating on MouseOver
Declaration
public bool ShouldStopOnMouseOver { get; set; }
Property Value
System.
|
Methods
DisposeManagedResources()
Declaration
protected override void DisposeManagedResources()
Overrides
Goto(Int32)
Initiates swap between the current item and the one whose index is supplied.
Declaration
public bool Goto(int index)
Parameters
System. the index of the item in the Items collection. The index of the home element is -1. |
Returns
System. true on successful swap |
GotoDefault()
Makes transition to the default element.
Declaration
public bool GotoDefault()
Returns
System.
|
InitializeFields()
Next()
Advances to the next item
Declaration
public bool Next()
Returns
System.
|
OnBeginRotate(Object, BeginRotateEventArgs)
Declaration
protected virtual void OnBeginRotate(object sender, BeginRotateEventArgs e)
Parameters
System.
|
Begin
|
OnBubbleEvent(RadElement, RoutedEventArgs)
Declaration
protected override void OnBubbleEvent(RadElement sender, RoutedEventArgs args)
Parameters
Rad
|
Routed
|
Overrides
OnEndRotate(Object, EventArgs)
Declaration
protected virtual void OnEndRotate(object sender, EventArgs e)
Parameters
System.
|
System.
|
OnItemClicked(Object, EventArgs)
Declaration
protected virtual void OnItemClicked(object sender, EventArgs e)
Parameters
System.
|
System.
|
OnMouseEnter(EventArgs)
Declaration
protected override void OnMouseEnter(EventArgs e)
Parameters
System.
|
Overrides
OnMouseLeave(EventArgs)
Declaration
protected override void OnMouseLeave(EventArgs e)
Parameters
System.
|
Overrides
OnPropertyChanged(RadPropertyChangedEventArgs)
Declaration
protected override void OnPropertyChanged(RadPropertyChangedEventArgs e)
Parameters
Overrides
OnStartRotation(Object, CancelEventArgs)
Declaration
protected virtual void OnStartRotation(object sender, CancelEventArgs e)
Parameters
System.
|
System.
|
OnStopRotation(Object, EventArgs)
Declaration
protected virtual void OnStopRotation(object sender, EventArgs e)
Parameters
System.
|
System.
|
Previous()
Advances to the previous item
Declaration
public bool Previous()
Returns
System.
|
Start(Boolean)
Starts cycling through the elements in the Items collection
Declaration
public bool Start(bool startImmediately)
Parameters
System. set to true to initiate rotation immediately, or set to false to rotate after the time Interval |
Returns
System. there are no elements to rotate (Items collection is empty) |
Stop()
Stops the rotation process. If swap is under way, it will be completed.
Declaration
public void Stop()
Events
BeginRotate
Fires before Rad
Declaration
public event BeginRotateEventHandler BeginRotate
Event Type
EndRotate
Fires when Rad
Declaration
public event EventHandler EndRotate
Event Type
System.
|
ItemClicked
Fires when an Item is clicked
Declaration
public event EventHandler ItemClicked
Event Type
System.
|
StartRotation
Fires when Rad
Declaration
public event CancelEventHandler StartRotation
Event Type
System.
|
StopRotation
Fires when Rad
Declaration
public event EventHandler StopRotation
Event Type
System.
|