限制asp.net中CheckedListBox中显示的项目数

发布于 2024-12-11 17:55:38 字数 637 浏览 0 评论 0原文

我在 asp.net Web 表单页面中有一个选中列表框,如下所示:

<asp:CheckBoxList ID="TagListCheckBox" runat="server" Height="100px" Width = "300px" 
style="z-index: 1; left: 63px; top: 146px; position: absolute; TextAlign="Left">
</asp:CheckBoxList>

并且我动态向其中添加项目:

 protected void TagListButton_Click(object sender, EventArgs e)
    {
        string[] TagList;
        TagList = LhClientClass.client.GetTagList();
        foreach (string s in TagList)
        {
            TagListCheckBox.Items.Add(s);
        }
    }

但是列表框的高度随着添加的项目数量的增加而增加。我想限制要显示的项目数量,并且添加一个滚动按钮或其他东西。我该怎么做?

I have a checkedlistbox in asp.net web form page as :

<asp:CheckBoxList ID="TagListCheckBox" runat="server" Height="100px" Width = "300px" 
style="z-index: 1; left: 63px; top: 146px; position: absolute; TextAlign="Left">
</asp:CheckBoxList>

and i add items to it dynamically :

 protected void TagListButton_Click(object sender, EventArgs e)
    {
        string[] TagList;
        TagList = LhClientClass.client.GetTagList();
        foreach (string s in TagList)
        {
            TagListCheckBox.Items.Add(s);
        }
    }

But the height of the list box grows as the number of items being added grows.I want to restrict the number of items to be displayed and add a scroll button to it or something.How do I do it?

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

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

发布评论

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

评论(1

寂寞清仓 2024-12-18 17:55:39

尝试在你的控件周围放置一个 div,这应该可以解决问题:

<div style="width:200px; height:100px; overflow:auto;">
  <asp:CheckBoxList ID="TagListCheckBox" runat="server" Width="300px" 
  style="z-index: 1; left: 63px; top: 146px; position: absolute; TextAlign="Left">
  </asp:CheckBoxList>
</div>

try to put a div around your control, this should do the trick:

<div style="width:200px; height:100px; overflow:auto;">
  <asp:CheckBoxList ID="TagListCheckBox" runat="server" Width="300px" 
  style="z-index: 1; left: 63px; top: 146px; position: absolute; TextAlign="Left">
  </asp:CheckBoxList>
</div>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文