Search Results for

    Show / Hide Table of Contents

    Class MuddyGroupBox

    This class contains the code-behind for the MuddyGroupBox component.

    Inheritance
    System.Object
    Microsoft.AspNetCore.Components.ComponentBase
    MudBlazor.MudComponentBase
    MuddyGroupBox
    Implements
    Microsoft.AspNetCore.Components.IComponent
    Microsoft.AspNetCore.Components.IHandleEvent
    Microsoft.AspNetCore.Components.IHandleAfterRender
    Inherited Members
    MudBlazor.MudComponentBase.Logger
    MudBlazor.MudComponentBase.Class
    MudBlazor.MudComponentBase.Style
    MudBlazor.MudComponentBase.Tag
    MudBlazor.MudComponentBase.UserAttributes
    MudBlazor.MudComponentBase.FieldId
    Microsoft.AspNetCore.Components.ComponentBase.BuildRenderTree(Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder)
    Microsoft.AspNetCore.Components.ComponentBase.OnInitialized()
    Microsoft.AspNetCore.Components.ComponentBase.OnInitializedAsync()
    Microsoft.AspNetCore.Components.ComponentBase.OnParametersSet()
    Microsoft.AspNetCore.Components.ComponentBase.OnParametersSetAsync()
    Microsoft.AspNetCore.Components.ComponentBase.StateHasChanged()
    Microsoft.AspNetCore.Components.ComponentBase.ShouldRender()
    Microsoft.AspNetCore.Components.ComponentBase.OnAfterRender(System.Boolean)
    Microsoft.AspNetCore.Components.ComponentBase.OnAfterRenderAsync(System.Boolean)
    Microsoft.AspNetCore.Components.ComponentBase.InvokeAsync(System.Action)
    Microsoft.AspNetCore.Components.ComponentBase.InvokeAsync(System.Func<System.Threading.Tasks.Task>)
    Microsoft.AspNetCore.Components.ComponentBase.Microsoft.AspNetCore.Components.IComponent.Attach(Microsoft.AspNetCore.Components.RenderHandle)
    Microsoft.AspNetCore.Components.ComponentBase.SetParametersAsync(Microsoft.AspNetCore.Components.ParameterView)
    Microsoft.AspNetCore.Components.ComponentBase.Microsoft.AspNetCore.Components.IHandleEvent.HandleEventAsync(Microsoft.AspNetCore.Components.EventCallbackWorkItem, System.Object)
    Microsoft.AspNetCore.Components.ComponentBase.Microsoft.AspNetCore.Components.IHandleAfterRender.OnAfterRenderAsync()
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    System.Object.ReferenceEquals(System.Object, System.Object)
    System.Object.ToString()
    Namespace: CG.Blazor.Forms.Components
    Assembly: CG.Blazor.Forms._MudBlazor.dll
    Syntax
    public class MuddyGroupBox : MudComponentBase, IComponent, IHandleEvent, IHandleAfterRender

    Constructors

    MuddyGroupBox()

    This constructor creates a new instance of the MuddyGroupBox class.

    Declaration
    public MuddyGroupBox()

    Properties

    ChildContent

    This parameter contains the child content of the component.

    Declaration
    [Parameter]
    public RenderFragment ChildContent { get; set; }
    Property Value
    Type Description
    Microsoft.AspNetCore.Components.RenderFragment

    Classname

    This property contains the class name for the component.

    Declaration
    protected string Classname { get; }
    Property Value
    Type Description
    System.String

    Elevation

    This parameter indicates the elevation for the component. The higher the number, the heavier the drop-shadow. 0 for no shadow.

    Declaration
    [Parameter]
    public int Elevation { get; set; }
    Property Value
    Type Description
    System.Int32

    Label

    This parameter contains the label for the component.

    Declaration
    [Parameter]
    public string Label { get; set; }
    Property Value
    Type Description
    System.String

    LabelColor

    This parmeter contains the color for the label.

    Declaration
    [Parameter]
    public Color LabelColor { get; set; }
    Property Value
    Type Description
    MudBlazor.Color

    LabelTypo

    This parmeter contains the typography for the label.

    Declaration
    [Parameter]
    public Typo LabelTypo { get; set; }
    Property Value
    Type Description
    MudBlazor.Typo

    Outlined

    This parameter, if true, indicates the group box will be outlined.

    Declaration
    [Parameter]
    public bool Outlined { get; set; }
    Property Value
    Type Description
    System.Boolean

    Square

    This property, if true, indicates the border-radius will be set to 0.

    Declaration
    [Parameter]
    public bool Square { get; set; }
    Property Value
    Type Description
    System.Boolean

    Implements

    Microsoft.AspNetCore.Components.IComponent
    Microsoft.AspNetCore.Components.IHandleEvent
    Microsoft.AspNetCore.Components.IHandleAfterRender
    In This Article
    Back to top Generated by DocFX