ClassDockManagerContentPane
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
DockManagerContentPane()
Declaration
public DockManagerContentPane()
Properties
AllowFloat
Closeable
Content
Defines the main content rendered within the pane body. Children: allows arbitrary content.
Declaration
[Parameter]
public RenderFragment Content { get; set; }
Property Value
HeaderTemplate
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.
Declaration
[Parameter]
public RenderFragment HeaderTemplate { get; set; }
Property Value
HeaderText
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.
Declaration
[Parameter]
public string HeaderText { get; set; }
Property Value
Maximizable
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.
Unpinnable
Unpinned
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.
UnpinnedChanged
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.
Declaration
[Parameter]
public EventCallback<bool> UnpinnedChanged { get; set; }
Property Value
UnpinnedSize
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.
Declaration
[Parameter]
public string UnpinnedSize { get; set; }
Property Value
UnpinnedSizeChanged
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.
Declaration
[Parameter]
public EventCallback<string> UnpinnedSizeChanged { get; set; }
Property Value
Methods
BuildRenderTree(RenderTreeBuilder)
Declaration
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters
__builder
Overrides
OnInitialized()
Declaration
protected override void OnInitialized()
Overrides