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

Represents a tab group pane in the DockManager. Children: Panes.

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Syntax:

C#
public class DockManagerTabGroupPane : DockManagerPaneBase, IComponent, IHandleEvent, IHandleAfterRender, IDisposable

Inheritance: objectComponentBaseBaseComponentDockManagerPaneBaseDockManagerTabGroupPane

Implements: IComponentIDisposableIHandleAfterRenderIHandleEvent

Inherited Members DockManagerPaneBase.OnInitialized()DockManagerPaneBase.Dispose()DockManagerPaneBase.DockableDockManagerPaneBase.IdDockManagerPaneBase.SizeDockManagerPaneBase.SizeChangedDockManagerPaneBase.VisibleDockManagerPaneBase.VisibleChangedBaseComponent.ShouldRender()BaseComponent.OnInitializedAsync()BaseComponent.OnAfterRenderAsync(bool)BaseComponent.InitLocalizer()BaseComponent.ThrowIfParameterIsNull(object, string)BaseComponent.HaveOptionsChanged(IDictionary<string, object>, IDictionary<string, object>)BaseComponent.GetClassString(params string[])BaseComponent.InvokeAsync<T>(string, params object[])BaseComponent.InvokeAsync<T>(string, CancellationToken, params object[])BaseComponent.InvokeVoidAsync(string, params object[])BaseComponent.InvokeVoidAsyncWithoutAwait(string, params object[])BaseComponent.InvokeComponentMethodAsync<T>(string, params object[])BaseComponent.InvokeComponentMethodAsync<T>(string, CancellationToken, params object[])BaseComponent.InvokeVoidComponentMethodAsync(string, params object[])BaseComponent.InvokeComponentVoidMethodAsync(string, object)BaseComponent.InvokeDisposeAsync()BaseComponent.StateHasChanged()BaseComponent.RootComponentBaseComponent.ClassComponentBase.OnParametersSet()ComponentBase.OnParametersSetAsync()ComponentBase.OnAfterRender(bool)ComponentBase.InvokeAsync(Action)ComponentBase.InvokeAsync(Func<Task>)ComponentBase.DispatchExceptionAsync(Exception)ComponentBase.SetParametersAsync(ParameterView)...

Constructors

C#
public DockManagerTabGroupPane()

Methods

C#
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters:__builderRenderTreeBuilder

Overrides: ComponentBase.BuildRenderTree(RenderTreeBuilder)

Properties

Determines whether an empty tab strip remains visible when no child panes are present. When false, the tab group automatically hides when empty, optimizing layout space. Default is false.

C#
[Parameter]
public bool AllowEmpty { get; set; }

Defines the content panes that will be displayed as tabs within this tab group. Children: DockManagerContentPane.

C#
[Parameter]
public RenderFragment Panes { get; set; }
C#
public IList<DockManagerPaneBase> PanesCollection { get; set; }

Specifies the ID of the pane that should be initially selected and visible in the tab group. Must match the Id of one of the child panes. If not set or invalid, the first pane is selected.

C#
[Parameter]
public string SelectedPaneId { get; set; }