mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-11-01 13:13:21 -07:00
36 lines
856 B
C#
36 lines
856 B
C#
|
using System;
|
||
|
using System.Threading.Tasks;
|
||
|
using System.Windows.Controls;
|
||
|
|
||
|
namespace SourceGit.UI {
|
||
|
|
||
|
/// <summary>
|
||
|
/// General waiting dialog.
|
||
|
/// </summary>
|
||
|
public partial class Waiting : UserControl {
|
||
|
|
||
|
/// <summary>
|
||
|
/// Constructor.
|
||
|
/// </summary>
|
||
|
public Waiting() {
|
||
|
InitializeComponent();
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// Show this dialog.
|
||
|
/// </summary>
|
||
|
/// <param name="job"></param>
|
||
|
public static void Show(Action job) {
|
||
|
var dialog = new Waiting();
|
||
|
PopupManager.Show(dialog);
|
||
|
PopupManager.Lock();
|
||
|
Task.Run(() => {
|
||
|
job.Invoke();
|
||
|
dialog.Dispatcher.Invoke(() => {
|
||
|
PopupManager.Close(true);
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
}
|