给groupBox添加滚动条

 public Form3()
        {
            InitializeComponent();
            foreach (Control gbox in groupBox1.Controls)
            {
                if (gbox is VScrollBar) continue;
                gbox.Tag = gbox.Location.Y;
            }
            panelControl1.VerticalScroll.Value = panelControl1.VerticalScroll.Maximum;
        }

然后加入一个垂直滚动条控件,并添加如下事件:

 private void vScrollBar1_Scroll(object sender, ScrollEventArgs e)
        {
            foreach (Control gbox in groupBox1.Controls)
            {
                if (gbox is VScrollBar) continue;
                gbox.Location = new Point(gbox.Location.X, (int)gbox.Tag - e.NewValue);
            }
        }

注意:给groupbox 的父panel 设置AutoScroll=true

时间: 2024-11-06 10:28:53

给groupBox添加滚动条的相关文章

为窗口添加滚动条事件

为窗口添加滚动条事件其实非常的简单, window.onscroll=function(){}; 注意在获取滚动条距离的时候 谷歌不识别document.documentElement.scrollTop,必须要加上document.body.scrollTop:即 var scrolltop=document.documentElement.scrollTop||document.body.scrollTop; 这样才能兼容各个浏览器! var scrollTop = window.pageY

添加滚动条,内容多时显示,内容少时隐藏

CSS样式: ? 1 2 3 <style type="text/css"><br> .scroll{<br> overflow-x:auto;  overflow-y:auto;  height:800px;<br> }<br> </style> 添加滚动条,内容多时显示,内容少时隐藏,布布扣,bubuko.com

DataGrid添加滚动条

DataGrid中是没有滚动条的,要添加滚动条需要借助<div>层 <div style="overflow:auto;width:95%;height:95%"> <asp:DataGrid id="DataGrid1" runat="server"></asp:DataGrid> </div>

CCScrollView添加滚动条和滚动背景

cocos2d-X里提供的CCScrollView里并没有提供滚动条和滚动条背景,我对它进行了一些修改,所用的cocos2d-x 版本为3.0 使用方法 CCBarScrollView* scrollView = CCBarScrollView::create(); scrollView->initWithViewSize((Size(280.0f,150.0f))); scrollView->setContentSize(Size(280,150*10.0f)); scrollView-&g

C# 给picturebox添加滚动条

在一个项目中需要给picturebox增加滚动条,我先前的做法和网上一样,将picturebox放在一个panel上,将panel的AutoScroll设置为ture,将picturebox的SizeMode设置为AutoSize,可是这样设置之后,滚动条没有如期的出现. Google一下,网上大多给出了上述的方法,看来只能靠自己了.picturebox总共也就那么几个属性与大小有关,挨个弄了弄,问题解决了. 综上:给picturebox添加滚动条的方法是:1.将picturebox放在pane

android textview添加滚动条

给textview添加滚动条 方式一: xml代码: //设置滚动条的方向 android:scrollbars="vertical" java中设置 tView=(TextView) findViewById(R.id.tv1); //设置滚动方式tView.setMovementMethod(ScrollingMovementMethod.getInstance()); 方式二: 直接通过ScrollView <ScrollView android:layout_width=

传播智客学习笔记--L24 网页源码查看和添加滚动条

添加滚动条 1 <ScrollView 2 android:layout_width="wrap_content" 3 android:layout_height="wrap_content" 4 > 5 <TextView 6 android:id="@+id/html" 7 android:layout_width="wrap_content" 8 android:layout_height="

Python中tkinter中控件的使用(6.Listbox列表框(添加滚动条))

import tkinter win = tkinter.Tk()win.title("Listbox列表框(添加滚动条)")#win.geometry("800x600+600+100")#tkinter.EXTENDED 可以使listbox支持shift和ctrl功能lb=tkinter.Listbox(win,selectmode=tkinter.EXTENDED)for item in["good","nice",&

UGUI Text添加滚动条 实现滚动显示

Project 说明:Content(GameObject)为text的父物体,text用于显示文本内容.ScrollBar为滚动条. 实现效果: Hierarchy: Inspector: 步骤: 1:GameObject新命名为Content,添加Text用于显示文本内容,ScrollBar的设置如下: Direction 设置为Bottom to Top 2:在Content上依次添加组件:ScrollRect ,Image,Mask. Vertical,Horzional属性消除勾号,S