Nico, test before you commit, these don't work!

This commit is contained in:
ZestyTS 2022-08-25 00:17:59 -07:00
parent 7cb09eb07b
commit 31f8b9955f
2 changed files with 19 additions and 3 deletions

View file

@ -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"
});
}
}
}

View file

@ -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"
});
}
}
}