Form1.cs
上传用户:huajielb
上传日期:2022-08-10
资源大小:35k
文件大小:1k
源码类别:

C#编程

开发平台:

C#

  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. namespace Case01_5
  10. {
  11.     public partial class Form1 : Form
  12.     {
  13.         public Form1()
  14.         {
  15.             InitializeComponent();
  16.         }
  17.         private void Form1_Load(object sender, EventArgs e)
  18.         {
  19.             this.timer1.Interval = 10;
  20.             this.timer1.Enabled = true;
  21.             this.WindowState = FormWindowState.Maximized;
  22.         }
  23.         private void timer1_Tick(object sender, EventArgs e)
  24.         {
  25.             label1.Left = label1.Left - 3;
  26.             if (label1.Right < 0)
  27.             {
  28.                 label1.Left = this.Width;
  29.             }
  30.         }
  31.         private void label1_Click(object sender, EventArgs e)
  32.         {
  33.             this.Close();
  34.         }
  35.     }
  36. }