绑定字段样式

发布于 2024-10-10 11:21:42 字数 100 浏览 2 评论 0 原文

如何为 BoundField 提供样式?

我在 Gridview 中使用 BoundField。 Tt 显示下划线和不需要的颜色。

如何去除下划线和颜色?

How can I give style for BoundField?

I'm using BoundField in Gridview. Tt shows an underline and an unwanted color.

How do I remove underline and color?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夜声 2024-10-17 11:21:43

根据您尝试的绑定字段,它可能会有所不同,但这里有一个示例。每个字段都有各种样式的属性,您也可以设置CssClass

CommandField

.select {
    text-decoration: none;
    color: Red;
}
<asp:CommandField ShowSelectButton="True">
    <ControlStyle CssClass="select" />
</asp:CommandField>

BoundField

.product {
    color: Blue;
}    
<asp:BoundField DataField="ProductName" HeaderText="Product Name" ItemStyle-CssClass="product">
    <ItemStyle CssClass="product" />
</asp:BoundField>

转到 GridView 属性 → 列,您将发现其中列出的所有字段。您可以在其中设置 样式属性>BoundField.

另一种选择是使用模板字段,您将拥有更多控制权。

Depending on what bound field you are trying it might vary a little but here is an example. Each fields has properties for various styles and you can set CssClass as well.

CommandField

.select {
    text-decoration: none;
    color: Red;
}
<asp:CommandField ShowSelectButton="True">
    <ControlStyle CssClass="select" />
</asp:CommandField>

BoundField

.product {
    color: Blue;
}    
<asp:BoundField DataField="ProductName" HeaderText="Product Name" ItemStyle-CssClass="product">
    <ItemStyle CssClass="product" />
</asp:BoundField>

Go to GridView Properties → Columns and you will find all your fields listed there. There you can set the style properties of BoundField.

Another alternative is using a Template Field where you will have more control.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文