0

我必须在下面的红色框中放置至少 30 个按钮,而不会拉伸表单大小。(按钮由数组生成)

我的问题是......有没有办法让表单的某些部分可以滚动。如果不是,是列表视图或列表框唯一选项吗?

在此处输入图像描述

4

3 回答 3

3

将它们放在Panel控件中,然后设置AutoScroll为 true。

于 2013-07-23T03:22:56.247 回答
1

在 FlowLayoutPanel 中添加所有按钮,FlowDirection=TopDown 和 AutoScroll=true

于 2013-07-23T03:35:44.830 回答
0

尝试这个:

设置可滚动区域的所需高度和宽度。

<div style="height: 500px; width: 400px; overflow: scroll;">

<%--Add your buttons inside this div, you may give an id to this div and make it runat server--%>

</div>
于 2013-07-23T05:37:02.053 回答