Esempio n. 1
0
        void RoundRectTest()
        {
            graphics.Clear();

            graphics.Stroke = 1;

            graphics.DrawRoundedRectangle(10, 10, 100, 100, 10, Color.Orange, false);

            graphics.DrawRoundedRectangle(20, 20, 100, 60, 20, Color.Blue, true);

            graphics.Show();
        }