ClassDockManagerContentPane
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
Specifies whether the pane can be undocked to a floating window. The default value is true.
Closeable
Specifies whether the pane can be hidden by clicking the close button. The default value is true.
Content
The content of the pane.
Declaration
[Parameter]
public RenderFragment Content { get; set; }
Property Value
HeaderTemplate
The header content of the pane. If not set, the header text will be displayed in the header.
Declaration
[Parameter]
public RenderFragment HeaderTemplate { get; set; }
Property Value
HeaderText
Sets the pane's header text.
Declaration
[Parameter]
public string HeaderText { get; set; }
Property Value
Maximizable
Specifies whether the pane can be maximized when floating. The default value is true.
Unpinnable
Specifies whether the pane can be unpinned and displayed in the side bar of the DockManager. The default value is true.
Unpinned
Specifies whether the pane is unpinned and displayed in the side bar of the DockManager.
UnpinnedChanged
Event that is fired when the unpinned state of the pane is changed. It accepts a boolean argument that indicates whether the pane is unpinned or not.
Declaration
[Parameter]
public EventCallback<bool> UnpinnedChanged { get; set; }
Property Value
UnpinnedSize
Specifies the size (width) of the container when the pane is unpinned.
Declaration
[Parameter]
public string UnpinnedSize { get; set; }
Property Value
UnpinnedSizeChanged
Event that is fired when the size of the unpinned pane is changed.
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