作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有没有办法在 Blazor 组件内的子组件上设置 css 类?
我现在拥有的是:
@using Microsoft.AspNetCore.Components;
@inherits ComponentBase
<div class="button-group-wrapper">
@SecondaryButton
<div class="floating-sticky-wrapper">
@PrimaryButton
</div>
</div>
@code {
[Parameter]
public RenderFragment PrimaryButton { get; set; }
[Parameter]
public RenderFragment SecondaryButton { get; set; }
}
<FloatingStickyButton>
<SecondaryButton>
<button type="button" class="button ...">Secondary</button>
</SecondaryButton>
<PrimaryButton>
<button type="submit" class="button button--primary ...">Primary</button>
</PrimaryButton>
</FloatingStickyButton>
@using Microsoft.AspNetCore.Components;
@inherits ComponentBase
<div class="button-group-wrapper">
@SecondaryButton
<div class="floating-sticky-wrapper">
@PrimaryButton({class: 'floating-sticky-button'})
</div>
</div>
@code {
[Parameter]
public RenderFragment PrimaryButton { get; set; }
[Parameter]
public RenderFragment SecondaryButton { get; set; }
}
最佳答案
这是一个想法:Blazor - How to create Components dynamically
此解决方案的问题是您只能从用户指定的类型创建子组件(不适用于 RenderFragment),然后您只能完全覆盖类属性。
关于.net - 在 Blazor 组件中的 @ChildContent 上设置 CSS 类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60540060/
有没有办法在 Blazor 组件内的子组件上设置 css 类? 我现在拥有的是: @using Microsoft.AspNetCore.Components; @inherits Component
我是一名优秀的程序员,十分优秀!