2022-03-04 18:41:07 +00:00
using System.Diagnostics ;
2020-03-08 22:25:34 +00:00
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 ( ) ;
2020-09-12 11:21:40 +00:00
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." ;
2020-03-08 22:25:34 +00:00
}
2022-03-04 18:41:07 +00:00
private void Button_Click ( object sender , RoutedEventArgs e )
{
2022-08-25 07:17:59 +00:00
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 )
{
2022-08-25 07:17:59 +00:00
Process . Start ( new ProcessStartInfo ( )
{
FileName = "https://ko-fi.com/zestyts" ,
UseShellExecute = true ,
Verb = "open"
} ) ;
2022-08-24 20:26:37 +00:00
}
2020-03-08 22:25:34 +00:00
}
2022-03-04 18:41:07 +00:00
}