Interface IPopover
- Namespace
- MudBlazor
- Assembly
- MudBlazor.dll
Represents a popover component.
public interface IPopover
- Extension Methods
Properties
ChildContent
The content within this popover.
RenderFragment? ChildContent { get; set; }
Property Value
Id
The unique identifier of the popover.
Guid Id { get; }
Property Value
Open
Shows the popover.
bool Open { get; set; }
Property Value
PopoverClass
The CSS class of the popover.
string PopoverClass { get; }
Property Value
PopoverStyles
The inline styles of the popover.
string PopoverStyles { get; }
Property Value
Tag
Any user data to link to this popover.
object? Tag { get; set; }
Property Value
UserAttributes
Any additional attributes to add to this component.
Dictionary<string, object?> UserAttributes { get; set; }
Property Value
Remarks
Use this for any attributes which don't have a parameter. They will be "splatted" onto the underlying HTML tag.