DropDownEventArgs
Class
The arguments of the TabControl.DropDownOpened and TabControl.DragDropClosed routed event.
Definition
Namespace:Telerik.Windows.Controls
Assembly:Telerik.Windows.Controls.Navigation.dll
Syntax:
C#
public class DropDownEventArgs : RadRoutedEventArgs
Inheritance: objectRadRoutedEventArgsDropDownEventArgs
Constructors
Initializes a new instance of the DropDownEventArgs class.
C#
public DropDownEventArgs(RoutedEvent routedEvent, object source, IEnumerable dropDownItems)
The routed event that the arguments belong to.
sourceobjectThe source of the routed event.
dropDownItemsIEnumerableThe items source of the drop down context menu.
Properties
Gets or sets the items collection for the drop down context menu.
C#
public IEnumerable DropDownItemsSource { get; set; }
Methods
When overridden in a derived class, provides a way to invoke event handlers in a type-specific way, which can increase efficiency over the base implementation.