using System.Diagnostics; using System.Windows; using System.Windows.Controls; namespace UWUVCI_AIO_WPF.UI.Frames { /// /// Interaktionslogik für StartFrame.xaml /// 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"); } } }