Class Page
public class Page : ComponentBase, IComponent, IHandleEvent, IHandleAfterRender, IDisposable
- Inheritance
-
Page
- Implements
- Inherited Members
Properties
CanCreate
[Parameter]
public bool CanCreate { get; set; }
Property Value
CanDelete
[Parameter]
public bool CanDelete { get; set; }
Property Value
ChildContent
[Parameter]
public RenderFragment? ChildContent { get; set; }
Property Value
CommandContext
public CommandContext CommandContext { get; }
Property Value
IsRoot
[Parameter]
public bool IsRoot { get; set; }
Property Value
OuterContext
[CascadingParameter]
public CommandContext? OuterContext { get; set; }
Property Value
PageContext
[CascadingParameter]
public IPageContext? PageContext { get; set; }
Property Value
RequiresVerticalConstraint
If true, this page has internal scrolling and needs an externally-imposed height limit.
[Parameter]
public bool RequiresVerticalConstraint { get; set; }
Property Value
Title
[Parameter]
[EditorRequired]
public string Title { get; set; }
Property Value
Methods
BuildRenderTree(RenderTreeBuilder)
Renders the component to the supplied RenderTreeBuilder.
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters
__builderRenderTreeBuilder
Dispose()
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
public void Dispose()
OnInitialized()
Method invoked when the component is ready to start, having received its initial parameters from its parent in the render tree.
protected override void OnInitialized()