gpt4 book ai didi

c# - 是否可以以编程方式隐藏单选按钮列表的特定列表项?

转载 作者:可可西里 更新时间:2023-11-01 09:02:06 24 4
gpt4 key购买 nike

我在我的 aspx 页面中使用了 gridview。因为我在一个单元格中有一个水平对齐的六个单选按钮的列表。

我需要隐藏第一个单选按钮。如何以编程方式实现这一目标?

<asp:GridView ID="CrowdRatingGrid" runat="server" AutoGenerateColumns="false" AllowPaging="true" PageSize="4" OnPageIndexChanging="CrowdRatingGrid_PageIndexChanging" ViewStateMode="Enabled">

<PagerSettings Mode="Numeric" PageButtonCount="4" />
<Columns>
<asp:TemplateField>
<HeaderTemplate>
Rating
</HeaderTemplate>
<ItemTemplate>
<asp:RadioButtonList runat="server" ID="Rating" SelectedValue='<%# Bind("rating_id") %>'
RepeatDirection="Horizontal">
<asp:ListItem Value="0" />
<asp:ListItem Value="1" />
<asp:ListItem Value="2" />
<asp:ListItem Value="3" />
<asp:ListItem Value="4" />
<asp:ListItem Value="5" />
</asp:RadioButtonList>
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>

我需要隐藏值为 0 的列表项。我将如何实现这一目标?

最佳答案

是的,您可以通过设置其 Enabled 来隐藏一个属性为 false:

Rating.Items[0].Enabled = false;

根据 OP 的评论进行编辑。要完全摆脱它,您需要这样做:

Rating.Items.RemoveAt(0);

然后当你想要它回来时,你需要这样做:

Rating.Items.Insert(0, "0");

关于c# - 是否可以以编程方式隐藏单选按钮列表的特定列表项?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15791936/

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