gpt4 book ai didi

c# - MudBlazor UI 库颜色

转载 作者:行者123 更新时间:2023-12-04 11:55:00 25 4
gpt4 key购买 nike

我真的很想更改 MudBlazor UI 组件的颜色。但是,我似乎无法覆盖默认样式。有人可以帮我吗?

最佳答案

在我们详细介绍如何使用 CSS 为 MudBlazor 组件设置样式之前,让我向您指出 theming documentation .
如果主题对您来说还不够,您有多种选择,可以使用 CSS 更改 MudBlazor 元素的样式。
请注意,您可能需要申请 !important覆盖 MudBlazor 的默认样式。
一种方法是在主 CSS 文件中定义自己的 CSS 类,并将类名传递给组件,如下所示:

<MudButton Class="my-class">Button with custom class</MudButton>
第二种方式是通过 Style 直接传递 CSS 样式属性(property), like documented here
<MudButton Variant="Variant.Filled" EndIcon="@Icons.Material.ArrowDownward" Style="background-color: yellowgreen; color: white; width: 200px; height: 60px;">
Download Now
</MudButton>
另一种方法是嵌入 <style>您甚至可以使用 C# 变量来动态修改 CSS。下面的例子你可以 try out in this fiddle
<style>
button {
background-color: yellowgreen !important;
color: white !important;
height: @(height)px;
}
</style>
<MudSlider @bind-Value="height" Min="30" Max="300"/>
<MudButton Variant="Variant.Filled">
Use Slider to change my height
</MudButton>

@code {
int height=100;
}
最后但并非最不重要的一点,如果你想使用 Blazor 的 CSS 隔离,你必须 确保您的页面/组件顶级元素是 html 元素 并且您使用 ::deep as discussed here .这会将组件或页面中所有按钮的文本更改为红色:
::deep .mud-button-text { color: red !important; }

关于c# - MudBlazor UI 库颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65801224/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com