masastack / MASA.Blazor

Blazor UI component library based on Material Design. Support Blazor Server, Blazor WebAssembly and MAUI Blazor.
https://docs.masastack.com/blazor/getting-started/installation
MIT License
1.11k stars 149 forks source link

Something about MBadge #1871

Closed huxinshuo closed 2 weeks ago

huxinshuo commented 3 weeks ago

<MButton Style="margin:15px;"><MBadge Color="green" Content="66666666">测试</MBadge></MButton> 嵌入在按钮内部时候 按钮长度没有伸缩 QQ截图20240428051444

Content显示是stringnumber 却不支持string QQ截图20240428051754

capdiem commented 3 weeks ago

@huxinshuo 正常,badge是绝对定位,你可以把它放外面,然后微调(Offset)。

huxinshuo commented 2 weeks ago

帮忙看下这个Content显示是stringnumber 却不支持string。

capdiem commented 2 weeks ago

@huxinshuo Content="@("string")"

huxinshuo commented 2 weeks ago

thanks