Event args used when new tabbed window is created via drag drop operation.
Definition
Namespace:Telerik.Windows.Controls.TabbedWindow
Assembly:Telerik.Windows.Controls.Navigation.dll
Syntax:
C#
public class TabbedWindowCreatingEventArgs : RoutedEventArgs
Inheritance: objectTabbedWindowCreatingEventArgs
Constructors
Initializes a new instance of the TabbedWindowCreatingEventArgs class.
C#
public TabbedWindowCreatingEventArgs(RadTabbedWindow sourceWindow, RadTabbedWindow newWindow, object draggedItem, RoutedEvent routedEvent, object source)
Initializes a new instance of the TabbedWindowCreatingEventArgs class.
C#
[Obsolete("This constructor is obsolete. Use the constructor with draggedItem parameter instead.")]
public TabbedWindowCreatingEventArgs(RadTabbedWindow sourceWindow, RadTabbedWindow newWindow, RadTabItem draggedTab, RoutedEvent routedEvent, object source)
Properties
Gets or sets a value indicating whether adding the new tab via add button should be cancelled.
C#
public bool Cancel { get; set; }
The dragged RadTabItem in unbound scenario or the dragged item (ViewModel) in databinding scenario.
C#
public object DraggedItem { get; }
The dragged RadTabItem from source RadTabbedWindow.
C#
[Obsolete("This property is obsolete. Use the DraggedItem property instead.")]
public RadTabItem DraggedTab { get; }
The new window created via drag drop operation.
C#
public RadTabbedWindow NewWindow { get; }
The source window from which the drag drop operation is started.
C#
public RadTabbedWindow SourceWindow { get; }