UWUVCI-AIO-WPF/UWUVCI AIO WPF/UI/Frames/StartFrame.xaml.cs

37 lines
No EOL
1.1 KiB
C#

using System.Diagnostics;
using System.Windows;
using System.Windows.Controls;
namespace UWUVCI_AIO_WPF.UI.Frames
{
/// <summary>
/// Interaktionslogik für StartFrame.xaml
/// </summary>
public partial class StartFrame : Page
{
public StartFrame()
{
InitializeComponent();
tb.Text += "\n\nIf any Issues happen during injection and you updated from the old version using the AutoUpdater, please go to settings and click Update Tools.";
}
private void Button_Click(object sender, RoutedEventArgs e)
{
Process.Start(new ProcessStartInfo()
{
FileName = "https://ko-fi.com/uwuvci",
UseShellExecute = true,
Verb = "open"
});
}
private void Button_Click2(object sender, RoutedEventArgs e)
{
Process.Start(new ProcessStartInfo()
{
FileName = "https://ko-fi.com/zestyts",
UseShellExecute = true,
Verb = "open"
});
}
}
}