Esempio n. 1
0
        void circleLifeColums(Colums before, Colums current)
        {
            pointBrefore = before.getColBotom().Location.X + before.getColBotom().Width + 100;
            if (current.getColBotom().Location.X + 43 <= 0)
            {
                temp          = current.getColBotom();
                temp.Location = new Point(pointBrefore, rd.Next(110, 234));

                current.setColBotom(temp);
            }
        }