Represents a tab control.
Namespace: MindFusion.UI.Wpf
Assembly: MindFusion.UI.Wpf
SyntaxC#
Copy Code
|
|---|
public class TabControl : ItemsControl |
Visual Basic
Copy Code
|
|---|
Public Class TabControl |
RemarksThe TabControl represents a standard tab control with extended functionality. The tabs in the TabControl can be repositioned interactively through dragging. To enable this, set EnableDragging to true. The tabs can be docked to any side of the control (TabStripPlacement), rotated (TabRotation) or aligned (TabAlignment) according to the user's needs. Each tab can display small buttons for interactive addition or removal of tabs. To turn the buttons on and off, set the AddButtonVisibility and RemoveButtonVisibility properties to the appropriate value.
Inheritance HierarchySystem.Object![]()
System.Windows.Threading.DispatcherObject![]()
System.Windows.DependencyObject![]()
System.Windows.Media.Visual![]()
System.Windows.UIElement![]()
System.Windows.FrameworkElement![]()
System.Windows.Controls.Control![]()
System.Windows.Controls.ItemsControl![]()
MindFusion.UI.Wpf.TabControl
See Also