mirror of
https://github.com/stuff-by-3-random-dudes/UWUVCI-AIO-WPF
synced 2024-11-10 05:34:13 +00:00
Nico, test before you commit, these don't work!
This commit is contained in:
parent
7cb09eb07b
commit
31f8b9955f
2 changed files with 19 additions and 3 deletions
|
@ -15,6 +15,7 @@ using System.Windows.Media.Imaging;
|
|||
using System.Windows.Navigation;
|
||||
using System.Windows.Shapes;
|
||||
using UWUVCI_AIO_WPF.UI.Windows;
|
||||
using static System.Net.WebRequestMethods;
|
||||
|
||||
|
||||
namespace UWUVCI_AIO_WPF.UI.Frames
|
||||
|
@ -143,7 +144,12 @@ namespace UWUVCI_AIO_WPF.UI.Frames
|
|||
|
||||
private void Button_Click_13(object sender, RoutedEventArgs e)
|
||||
{
|
||||
Process.Start("https://ko-fi.com/zestyts");
|
||||
Process.Start(new ProcessStartInfo()
|
||||
{
|
||||
FileName = "https://ko-fi.com/zestyts",
|
||||
UseShellExecute = true,
|
||||
Verb = "open"
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -17,11 +17,21 @@ namespace UWUVCI_AIO_WPF.UI.Frames
|
|||
|
||||
private void Button_Click(object sender, RoutedEventArgs e)
|
||||
{
|
||||
Process.Start("https://ko-fi.com/uwuvci");
|
||||
Process.Start(new ProcessStartInfo()
|
||||
{
|
||||
FileName = "https://ko-fi.com/uwuvci",
|
||||
UseShellExecute = true,
|
||||
Verb = "open"
|
||||
});
|
||||
}
|
||||
private void Button_Click2(object sender, RoutedEventArgs e)
|
||||
{
|
||||
Process.Start("https://ko-fi.com/zestyts");
|
||||
Process.Start(new ProcessStartInfo()
|
||||
{
|
||||
FileName = "https://ko-fi.com/zestyts",
|
||||
UseShellExecute = true,
|
||||
Verb = "open"
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue