ClassDropDownEventArgs
The arguments of the TabControl.DropDownOpened and TabControl.DragDropClosed routed event.
Definition
Namespace:Telerik.UI.Xaml.Controls
Assembly:Telerik.WinUI.Controls.dll
Syntax:
public class DropDownEventArgs : RadRoutedEventArgs
Inheritance: objectRadRoutedEventArgsDropDownEventArgs
Inherited Members
Constructors
DropDownEventArgs(RoutedEvent, object, IEnumerable)
Initializes a new instance of the DropDownEventArgs class.
Declaration
public DropDownEventArgs(RoutedEvent routedEvent, object source, IEnumerable dropDownItems)
Parameters
routedEvent
The routed event that the arguments belong to.
source
The source of the routed event.
dropDownItems
The items source of the drop down context menu.
Properties
DropDownItemsSource
Gets or sets the items collection for the drop down context menu.
Declaration
public IEnumerable DropDownItemsSource { get; set; }
Property Value
Methods
InvokeEventHandler(Delegate, object)
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.
Declaration
protected override void InvokeEventHandler(Delegate genericHandler, object genericTarget)
Parameters
genericHandler
The generic handler / delegate implementation to be invoked.
genericTarget
The target on which the provided handler should be invoked.
Overrides