UWUVCI-AIO-WPF/UWUVCI AIO WPF/UI/Frames/StartFrame.xaml.cs
2022-03-04 10:41:07 -08:00

23 lines
No EOL
661 B
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("https://ko-fi.com/uwuvci");
}
}
}