Represents a content pane in the DockManager.
Definition
Namespace:Telerik.Blazor.Components
Assembly:Telerik.Blazor.dll
Syntax:
public class DockManagerContentPane : DockManagerPaneBase, IComponent, IHandleEvent, IHandleAfterRender, IDisposable
Inheritance: objectComponentBaseBaseComponentDockManagerPaneBaseDockManagerContentPane
Implements:
Inherited Members
Constructors
public DockManagerContentPane()
Methods
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Overrides:
protected override void OnInitialized()
Overrides:
Properties
Defines the main content rendered within the pane body. Children: allows arbitrary content.
[Parameter]
public RenderFragment Content { get; set; }
Specifies custom content for the pane header, overriding the default text display. When set, replaces HeaderText in the header area. Use for custom styling or interactive header elements. Children: allows arbitrary content.
[Parameter]
public RenderFragment HeaderTemplate { get; set; }
Defines the text displayed in the pane header and tab. Used as the pane title in tab groups and the header when HeaderTemplate is not specified.
[Parameter]
public string HeaderText { get; set; }
Determines whether floating panes can be maximized to fill the viewport. Only applies when the pane is in a floating window. See also AllowFloat. Default is true.
[Parameter]
public bool Maximizable { get; set; }
Indicates whether the pane is currently unpinned and displayed in the DockManager sidebar. Unpinned panes appear as tabs on the sidebar and show content on hover or click. Default is false.
[Parameter]
public bool Unpinned { get; set; }
Fires when the pane's unpinned state changes due to user interaction or programmatic updates. Provides the new unpinned state as a boolean argument. Use for synchronizing external state or triggering custom logic.
[Parameter]
public EventCallback<bool> UnpinnedChanged { get; set; }
Defines the width of the sidebar container when the pane is unpinned. Accepts CSS values like "200px", "15%", or "10em". Determines the popup width when accessing unpinned content.
[Parameter]
public string UnpinnedSize { get; set; }
Fires when the unpinned pane container size changes due to user resizing or programmatic updates. Provides the new size as a CSS string value. Use for persisting user preferences or updating related components.
[Parameter]
public EventCallback<string> UnpinnedSizeChanged { get; set; }