简体   繁体   中英

How to scroll down the window from by vertical scroll down in C#

How to scroll down the window form with the help of vertical scroll in C#. When I scroll window form should move down with the help of vertical scroll down.

How to do and what to do in C# for both while designing and while running?

if you want to scroll to the lbl_txt , you can do this:

this.AutoScroll = true;
lbl.Focus();

lbl_txt could be any control

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM