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 { /// /// Confirm to delete a remote /// public partial class DeleteRemote : UserControl { private Git.Repository repo = null; private string remote = null; /// /// Constructor. /// /// Opened repository /// Remote to be deleted public DeleteRemote(Git.Repository opened, string target) { InitializeComponent(); repo = opened; remote = target; remoteName.Content = target; } /// /// Show this dialog /// /// /// public static void Show(Git.Repository opened, string remote) { PopupManager.Show(new DeleteRemote(opened, remote)); } /// /// Delete /// /// /// private async void Sure(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; await Task.Run(() => Git.Remote.Delete(repo, remote)); status.Visibility = Visibility.Collapsed; statusIcon.RenderTransform.BeginAnimation(RotateTransform.AngleProperty, null); PopupManager.Close(true); } /// /// Cancel. /// /// /// private void Cancel(object sender, RoutedEventArgs e) { PopupManager.Close(); } } }