Scroll subtitle animation form

Source: Internet
Author: User

Create a scroll bar on the screen

Form View

Implementation:

1. Create a form, set the form formborderstyle to none, and set its transparencykey attribute to control.

2. Add the lable control and set the text attribute to scroll the string

3. Add the timer control and write code under its tick event

Code:
  1. // Move the lable control to the left
  2. This. lable1.left = This. lable1.left-3;
  3. // If the right side of the control is exposed to the left side of the container
  4. // Move from the right
  5. If (this. lable1.right <0)
  6. {
  7. This. lable1.left = This. width;
  8. }

4. In the form loading time, set the windowstate attribute of the form to maximized and start the timer control.

The above step completes the animation effect. In the above Code, we need to be familiar with the control. Left and

Control. RightThese two control attributes

System. Windows. Forms. Control. left:The distance between the left side of the control and the left side of the container.

System. Windows. Forms. Control. Right: the distance between the right side of the control and the left side of the container.

Tips to share with you

Happy in learning, happy in learning

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.