using System; using System.Threading.Tasks; using System.Windows; using System.Windows.Controls; using System.Windows.Media; using System.Windows.Media.Animation; namespace SourceGit.UI { /// /// Delete tag dialog. /// public partial class DeleteTag : UserControl { private Git.Repository repo = null; private Git.Tag tag = null; /// /// Constructor /// /// Opened repo /// Delete tag public DeleteTag(Git.Repository repo, Git.Tag tag) { this.repo = repo; this.tag = tag; InitializeComponent(); tagName.Content = tag.Name; } /// /// Display this dialog. /// /// /// public static void Show(Git.Repository repo, Git.Tag tag) { PopupManager.Show(new DeleteTag(repo, tag)); } /// /// Start request. /// /// /// private async void Start(object sender, RoutedEventArgs e) { PopupManager.Lock(); DoubleAnimation anim = new DoubleAnimation(0, 360, TimeSpan.FromSeconds(1)); anim.RepeatBehavior = RepeatBehavior.Forever; statusIcon.RenderTransform.BeginAnimation(RotateTransform.AngleProperty, anim); status.Visibility = Visibility.Visible; var push = chkWithRemote.IsChecked == true; await Task.Run(() => Git.Tag.Delete(repo, tag.Name, push)); status.Visibility = Visibility.Collapsed; statusIcon.RenderTransform.BeginAnimation(RotateTransform.AngleProperty, null); PopupManager.Close(true); } /// /// Cancel. /// /// /// private void Cancel(object sender, RoutedEventArgs e) { PopupManager.Close(); } } }