Пример #1
0
        private void Refresh(Captcha captcha)
        {
            if (captcha.Type == "image")
            {
                this.image.Source = captcha.ToBitmap();
                this.play.Visibility = Visibility.Collapsed;
            }

            if (captcha.Type == "audio")
            {
                this.image.Source = null;
                this.play.Visibility = Visibility.Visible;
            }
        }