Class AddingNewTabEventArgs
Event args used when new tab is being added via the 'Add' button in the UI.
Inheritance
Namespace: Telerik.Windows.Controls.TabbedWindow
Assembly: Telerik.Windows.Controls.Navigation.dll
Syntax
public class AddingNewTabEventArgs : RoutedEventArgs
Constructors
AddingNewTabEventArgs(RoutedEvent, Object)
Initializes a new instance of the AddingNewTabEventArgs class.
Declaration
public AddingNewTabEventArgs(RoutedEvent routedEvent, object source)
Parameters
System.Windows.RoutedEvent
routedEvent
|
System.Object
source
|
Properties
Cancel
Gets or sets a value indicating whether adding the new tab via add button should be cancelled.
Declaration
public bool Cancel { get; set; }
Property Value
System.Boolean
|
Item
This will be the new RadTabItem created internally or the ViewModel user should provide in databinding scenarios. User can set properties to the RadTabItem like Header, Content or provide new instance of ViewModel to be added in the ItemsSource collection.
Declaration
public object Item { get; set; }
Property Value
System.Object
|