skip navigation
  • Product Bundles

    DevCraft

    All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:

    • NEW: Design Kits for Figma
    • Online Training
    • Document Processing Library
    • Embedded Reporting for web and desktop

    Web

    Kendo UI UI for jQuery UI for Angular UI for React UI for Vue UI for Blazor UI for ASP.NET Core UI for ASP.NET MVC UI for ASP.NET AJAX

    Mobile

    UI for .NET MAUI

    Document Management

    Telerik Document Processing

    Desktop

    UI for .NET MAUI UI for WinUI UI for WinForms UI for WPF

    Reporting

    Telerik Reporting Telerik Report Server

    Testing & Mocking

    Test Studio Test Studio Dev Edition Telerik JustMock

    CMS

    Sitefinity

    UI/UX Tools

    ThemeBuilder Design System Kit Templates and Building Blocks

    Debugging

    Fiddler Fiddler Everywhere Fiddler Classic Fiddler Everywhere Reporter FiddlerCore

    Free Tools

    VB.NET to C# Converter Testing Framework
    View all products
  • Overview
  • Demos
    • What's New
    • Roadmap
    • Release History
  • Support and Learning

    • Support and Learning Hub
    • First Steps
    • Docs
    • Demos
    • Virtual Classroom
    • Forums
    • Videos
    • Blogs
    • Accessibility
    • Submit a Ticket

    Productivity and Design Tools

    • Visual Studio Extensions
    • Visual Studio Templates
    • Embedded Reporting
  • Pricing
  • Shopping cart
    • Account Overview
    • Your Licenses
    • Downloads
    • Support Center
    • Forum Profile
    • Payment Methods
    • Edit Profile
    • Log out
  • Login
  • Contact Us
  • Try now

Class RadRibbonTab

Represents the content of a Ribbon tab.

Inheritance
System.Object
RadRibbonTab
Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Controls.RibbonView.dll

Syntax

[TelerikToolboxCategory("Navigation")]
[Themable]
public class RadRibbonTab : HeaderedItemsControl, IRadTabItem, IThemable

Constructors

RadRibbonTab()

Initializes a new instance of the RadRibbonTab class.

Declaration
public RadRibbonTab()

Fields

ContextualGroupNameProperty

Identifies the ContextualGroupName property.

Declaration
public static readonly DependencyProperty ContextualGroupNameProperty
Field Value
System.Windows.DependencyProperty

HeaderVisibilityProperty

Identifies the HeaderVisibility property.

Declaration
public static readonly DependencyProperty HeaderVisibilityProperty
Field Value
System.Windows.DependencyProperty

IsContextualTabVisibleProperty

Identifies the IsContextualTabVisible property.

Declaration
public static readonly DependencyProperty IsContextualTabVisibleProperty
Field Value
System.Windows.DependencyProperty

IsSelectedProperty

Identifies the property.

Declaration
public static readonly DependencyProperty IsSelectedProperty
Field Value
System.Windows.DependencyProperty

See Also
IsSelected

MinimizedBackgroundProperty

Identifies the MinimizedBackground property.

Declaration
public static readonly DependencyProperty MinimizedBackgroundProperty
Field Value
System.Windows.DependencyProperty

Properties

ContextualGroupName

Gets or sets the associated Contextual Groups.

Declaration
public string ContextualGroupName { get; set; }
Property Value
System.String

HeaderVisibility

Gets or sets a value indicating whether the header of the tab will be visible.

Declaration
public Visibility HeaderVisibility { get; set; }
Property Value
System.Windows.Visibility

IsContextualTabVisible

Gets value indicating whether the ContextualTab is visible or not.

Declaration
public Nullable<bool> IsContextualTabVisible { get; }
Property Value
System.Nullable<System.Boolean>

IsSelected

Gets or sets a value indicating whether this instance is selected.

Declaration
public bool IsSelected { get; set; }
Property Value
System.Boolean

True if this instance is selected; otherwise, false.

Implements
IRadTabItem.IsSelected

MinimizedBackground

Gets or sets a brushed used for the Background of RibbonTab when the Ribbon is minimized.

Declaration
public Brush MinimizedBackground { get; set; }
Property Value
System.Windows.Media.Brush

SimplifiedItems

Gets or sets the collection used to display items in RibbonView's Simplified state.

Declaration
public ObservableCollection<RadRibbonGroup> SimplifiedItems { get; }
Property Value
System.Collections.ObjectModel.ObservableCollection<RadRibbonGroup>

SimplifiedResources

Gets or sets the resource dictionary used in RibbonView's Simplified state.

Declaration
public ResourceDictionary SimplifiedResources { get; }
Property Value
System.Windows.ResourceDictionary

TabStripPlacement

Gets the tab strip placement.

Declaration
public Dock TabStripPlacement { get; }
Property Value
System.Windows.Controls.Dock

Implements
IRadTabItem.TabStripPlacement

Methods

ArrangeOverride(Size)

Called when the control is arranged.

Declaration
protected override Size ArrangeOverride(Size finalSize)
Parameters
System.Windows.Size finalSize

Returns
System.Windows.Size

ChangeVisualState(Boolean)

Updates the visual state of the control.

Declaration
protected void ChangeVisualState(bool useTransitions)
Parameters
System.Boolean useTransitions

Indicates whether transitions should be used.

GetContainerForItemOverride()

Creates or identifies the element that is used to display the given item.

Declaration
protected override sealed DependencyObject GetContainerForItemOverride()
Returns
System.Windows.DependencyObject

The element that is used to display the given item.

IsItemItsOwnContainerOverride(Object)

Determines if the specified item is (or is eligible to be) its own container.

Declaration
protected override sealed bool IsItemItsOwnContainerOverride(object item)
Parameters
System.Object item

Returns
System.Boolean

OnApplyTemplate()

Called when the control template is applied.

Declaration
public override void OnApplyTemplate()

OnInitialized(EventArgs)

Called when the control has been initialized.

Declaration
protected override void OnInitialized(EventArgs e)
Parameters
System.EventArgs e

OnIsSelectedChanged(Boolean, Boolean)

Called when the IsSelected property has changed.

Declaration
protected virtual void OnIsSelectedChanged(bool oldValue, bool newValue)
Parameters
System.Boolean oldValue

The old value of the IsSelected property.

System.Boolean newValue

The new value of the IsSelected property.

OnMouseEnter(MouseEventArgs)

Called before the System.Windows.UIElement.MouseEnter event occurs.

Declaration
protected override void OnMouseEnter(MouseEventArgs e)
Parameters
System.Windows.Input.MouseEventArgs e

The data for the event.

OnMouseLeave(MouseEventArgs)

Called before the System.Windows.UIElement.MouseLeave event occurs.

Declaration
protected override void OnMouseLeave(MouseEventArgs e)
Parameters
System.Windows.Input.MouseEventArgs e

The data for the event.

PrepareContainerForItemOverride(DependencyObject, Object)

Prepares the specified element to display the specified item.

Declaration
protected override void PrepareContainerForItemOverride(DependencyObject element, object item)
Parameters
System.Windows.DependencyObject element

Element used to display the specified item.

System.Object item

Specified item.

ResetTheme()

Resets the theme.

Declaration
public void ResetTheme()

SetTabOrientation(Orientation)

Sets the tab orientation.

Declaration
public void SetTabOrientation(Orientation orientation)
Parameters
System.Windows.Controls.Orientation orientation

The orientation.

Implements
IRadTabItem.SetTabOrientation(Orientation)

UpdateHeaderPresenterContent()

Updates the content of the header presenter.

Declaration
public void UpdateHeaderPresenterContent()
Implements
IRadTabItem.UpdateHeaderPresenterContent()

UpdateTabStripPlacement(Dock)

Updates the tab strip placement.

Declaration
public void UpdateTabStripPlacement(Dock placement)
Parameters
System.Windows.Controls.Dock placement

The placement.

Implements
IRadTabItem.UpdateTabStripPlacement(Dock)

Explicit Interface Implementations

IRadTabItem.Control

Gets an a reference to the control that implements the IRadTabItem interface.

Declaration
Control IRadTabItem.Control { get; }
Returns
System.Windows.Controls.Control

Implements
IRadTabItem.Control

Extension Methods

CollectionExtensions.ToEnumerable<T>(T)
EnumerableExtensions.ToEnumerable<T>(T)
Getting Started
  • Install Now
  • Demos
  • SDK Samples Browser
  • Sample Applications
Support Resources
  • Code Library
  • Knowledge Base
  • MVVM Support
  • Videos
  • GitHub SDK Repository
Community
  • Forums
  • Blogs
  • XAML Feedback Portal
  • Document Processing Feedback Portal

Copyright © 2018 Progress Software Corporation and/or its subsidiaries or affiliates.
All Rights Reserved.

Progress, Telerik, and certain product names used herein are trademarks or registered trademarks of Progress Software Corporation and/or one of its subsidiaries or affiliates in the U.S. and/or other countries. See Trademarks for appropriate markings.