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

37 lines
1.1 KiB
C#
Raw Normal View History

2022-03-04 18:41:07 +00:00
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.";
}
2022-03-04 18:41:07 +00:00
private void Button_Click(object sender, RoutedEventArgs e)
{
Process.Start(new ProcessStartInfo()
{
FileName = "https://ko-fi.com/uwuvci",
UseShellExecute = true,
Verb = "open"
});
2022-03-04 18:41:07 +00:00
}
2022-08-24 20:26:37 +00:00
private void Button_Click2(object sender, RoutedEventArgs e)
{
Process.Start(new ProcessStartInfo()
{
FileName = "https://ko-fi.com/zestyts",
UseShellExecute = true,
Verb = "open"
});
2022-08-24 20:26:37 +00:00
}
}
2022-03-04 18:41:07 +00:00
}