C#窗体滚动条(容器滚动条)

效果如下图

C#窗体滚动条(容器滚动条)_第1张图片

代码如下


        private void timer1_Tick(object sender, EventArgs e)
        {
            if (button1.Top < 1000)
                button1.Top += 10;
            else
                button1.Top = 0;

            this.Text = button1.Top.ToString();

        }

        private void button2_Click(object sender, EventArgs e)
        {

            //this.AutoScroll = true; //打开滚动条

            this.AutoScroll = !this.AutoScroll;

            if( this.AutoScroll )
            {
                button2.Text = "显示滚动条";
            }
            else
            {
                button2.Text = "关闭滚动条";
            }

        }

 核心代码

this.AutoScroll = true; //打开滚动条

同样 AutoScroll 属性也适用于其他容器

特此记录

anlog

2022年9月17日

你可能感兴趣的:(笔记,c#,滚动条,窗体滚动条,容器滚动条)