-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectoryView.xaml.cs
85 lines (76 loc) · 2.45 KB
/
DirectoryView.xaml.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
using System.Diagnostics;
using System.Threading.Tasks;
using System.Windows;
namespace LicenseMe;
public partial class DirectoryView : Window
{
public DirectoryView()
{
InitializeComponent();
}
/// <summary>
/// Inits the Search for the Git-Directories
/// </summary>
public async Task UpdateListView()
{
var waitingWindow = new Waiting("Searching for Git-Repositories on your Computer");
waitingWindow.Show();
GitGrid.ItemsSource = await DirectoryCrawler.GetGitDirectories();
waitingWindow.Close();
}
/// <summary>
/// Button-Click from the Context-Menu when clicking "AddLicense"
/// </summary>
/// <param name="sender"></param>
/// <param name="a"></param>
private async void AddLicenseC(object sender, RoutedEventArgs a)
{
var dc = GitGrid.SelectedItem as GitDirectory;
var chooseWindow = new ViewLicensesToAdd(dc);
chooseWindow.Show();
var ww = new Waiting("Loading licenses from github...");
ww.Show();
await chooseWindow.LoadLicenses();
ww.Close();
}
/// <summary>
/// Button-Click from the Context-Menu when clicking "AddReadme"
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private async void AddReadmeC(object sender, RoutedEventArgs e)
{
var dc = GitGrid.SelectedItem as GitDirectory;
await dc.AddReadme();
}
/// <summary>
/// Button-Click from the Context-Menu when clicking "RemoveLicense"
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void RemoveLicenseC(object sender, RoutedEventArgs e)
{
var gd = GitGrid.SelectedItem as GitDirectory;
gd.RemoveLicense();
}
/// <summary>
/// Button-Click from the Context-Menu when clicking "RemoveReadme"
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void RemoveReadmeC(object sender, RoutedEventArgs e)
{
var gd = GitGrid.SelectedItem as GitDirectory;
gd.RemoveReadme();
}
/// <summary>
/// Opens the File-Explorer on the DirectoyPath selected
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void OpenExplorerClick(object sender, RoutedEventArgs e)
{
var gd = GitGrid.SelectedItem as GitDirectory;
Process.Start("explorer.exe", gd.Path);
}
}