我必须在下面的红色框中放置至少 30 个按钮,而不会拉伸表单大小。(按钮由数组生成)
我的问题是......有没有办法让表单的某些部分可以滚动。如果不是,是列表视图或列表框唯一选项吗?
我必须在下面的红色框中放置至少 30 个按钮,而不会拉伸表单大小。(按钮由数组生成)
我的问题是......有没有办法让表单的某些部分可以滚动。如果不是,是列表视图或列表框唯一选项吗?
将它们放在Panel
控件中,然后设置AutoScroll
为 true。
在 FlowLayoutPanel 中添加所有按钮,FlowDirection=TopDown 和 AutoScroll=true
尝试这个:
设置可滚动区域的所需高度和宽度。
<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>