StartInfoFlash() публичный Метод

public StartInfoFlash ( ) : void
Результат void
Пример #1
0
        // Directory button clicked
        private void dirbutton_Click(object sender, EventArgs e)
        {
            DisplayButton thisbutton = (DisplayButton)sender;

            if (thisbutton.IsInfoFlashing)
            {
                thisbutton.StopInfoFlash();
            }
            else
            {
                thisbutton.StartInfoFlash();
            }

            UpdateSearchButton();
        }