New to Telerik UI for WPFStart a free 30-day trial

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)
Parameters:routedEventRoutedEvent

The routed event that the arguments belong to.

sourceobject

The source of the routed event.

dropDownItemsIEnumerable

The 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.

C#
protected override void InvokeEventHandler(Delegate genericHandler, object genericTarget)
Parameters:genericHandlerDelegate

The generic handler / delegate implementation to be invoked.

genericTargetobject

The target on which the provided handler should be invoked.