Esempio n. 1
0
 public void gDrawFixedBall(BallsWnd pbox)
 {
     P.Image = global::BallsControl.Properties.Resources.ballfixed;
     P.Left  = _x;
     P.Top   = _y;
     P.Show();
 }
Esempio n. 2
0
 public void Delete(BallsWnd pbox)
 {
     if (P != null)
     {
         pbox.Controls.Remove(P);
     }
 }
Esempio n. 3
0
        public AnimBall(BallsWnd pbox)
        {
            //
            // Default Constructor
            //
            P        = new PictureBox();
            P.Width  = 26;
            P.Height = 26;

            pbox.Controls.Add(P);
        }