mirror of
https://github.com/stuff-by-3-random-dudes/UWUVCI-AIO-WPF
synced 2024-11-23 11:33:03 +00:00
23 lines
No EOL
661 B
C#
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");
|
|
}
|
|
}
|
|
} |