示例#1
0
        private void logoPictureBox_Click(object sender, EventArgs e)
        {
            cruFunc head = new cruFunc();

            head.Show();
            while (head.Visible)
            {
                head.Tick();
                Application.DoEvents();
                Thread.Sleep(10);
            }
        }
示例#2
0
 private void logoPictureBox_Click(object sender, EventArgs e)
 {
     cruFunc head = new cruFunc();
     head.Show();
     while (head.Visible)
     {
         head.Tick();
         Application.DoEvents();
         Thread.Sleep(10);
     }
 }