MetroFramework.Controls.MetroProgressSpinner.MetroProgressSpinner C# (CSharp) 메소드

MetroProgressSpinner() 공개 메소드

public MetroProgressSpinner ( ) : System
리턴 System
        public MetroProgressSpinner()
        {
            timer = new Timer();
            timer.Interval = 20;
            timer.Tick += timer_Tick;
            timer.Enabled = true;

            Width = 16;
            Height = 16;
            speed = 1;
            DoubleBuffered = true;
        }