mirror of
https://github.com/stuff-by-3-random-dudes/UWUVCI-AIO-WPF
synced 2024-11-26 21:10:20 +00:00
37 lines
No EOL
1.1 KiB
C#
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"
|
|
});
|
|
}
|
|
}
|
|
} |