Class SplitContainer
Inheritance
Implements
Inherited Members
Namespace: PoeShared.Blazor.Controls.Splitter
Assembly: PoeShared.Blazor.Controls.dll
Syntax
public class SplitContainer : BlazorReactiveComponent, IComponent, IHandleEvent, IHandleAfterRender, IReactiveComponent, IDisposable, INotifyPropertyChanged, IRefreshableComponent, IAsyncDisposable
Constructors
| Name | Description |
|---|---|
| SplitContainer() |
Properties
| Name | Description |
|---|---|
| FirstPane | The left or top pane in the SplitContainer. |
| FirstPaneMinSize | Determines the minimum distance of pixels of the splitter from the left or the top edge of first pane. |
| FirstPaneSize | Determines pixel distance of the splitter from the left or top edge. |
| FirstPaneSizeChanged | A callback that will be invoked when the size of the first pane is changed. |
| Orientation | Determines if the splitter is vertical or horizontal. |
| SecondPane | The right or bottom pane in the SplitContainer. |
| SecondPaneMinSize | Determines the minimum distance of pixels of the splitter from the right or the bottom edge of second pane. |
| SecondPaneSize | Determines pixel distance of the splitter from the right or bottom edge. |
| SecondPaneSizeChanged | A callback that will be invoked when the size of the second pane is changed. |
| SplitterUnitOfPaneSize | Determines the unit of the pane size. (Default: Pixel) |
Methods
| Name | Description |
|---|---|
| BuildRenderTree(RenderTreeBuilder) | |
| DisposeAsync() | |
| OnAfterFirstRenderAsync() | Method invoked first time the component has been rendered. Note that the component does not automatically re-render after the completion of any returned Task, because that would cause an infinite render loop. |