diff --git a/Il2CppInspector.GUI/MainWindow.xaml b/Il2CppInspector.GUI/MainWindow.xaml index ef63427..a02b7e5 100644 --- a/Il2CppInspector.GUI/MainWindow.xaml +++ b/Il2CppInspector.GUI/MainWindow.xaml @@ -6,7 +6,7 @@ xmlns:local="clr-namespace:Il2CppInspectorGUI" xmlns:gif="https://github.com/XamlAnimatedGif/XamlAnimatedGif" mc:Ignorable="d" - Title="Il2CppInspector" Height="590" Width="970" Background="White"> + Title="Il2CppInspector" Height="630" Width="970" Background="White"> @@ -109,6 +109,17 @@ + + + If you find this tool useful, please donate to help support its continued development! + Donate via PayPal + Donate with bitcoin:3FoRUqUXgYj8NY8sMQfhX6vv9LqR3e2kzz + + Il2CppInspector on GitHub + www.djkaty.com + © Katy Coe 2017-2020 + + diff --git a/Il2CppInspector.GUI/MainWindow.xaml.cs b/Il2CppInspector.GUI/MainWindow.xaml.cs index 4c624e9..aa7131e 100644 --- a/Il2CppInspector.GUI/MainWindow.xaml.cs +++ b/Il2CppInspector.GUI/MainWindow.xaml.cs @@ -5,6 +5,7 @@ using System; using System.Collections.Generic; using System.Collections.Specialized; using System.ComponentModel; +using System.Diagnostics; using System.IO; using System.Linq; using System.Reflection; @@ -160,6 +161,13 @@ namespace Il2CppInspectorGUI i.Where(s => s.IndexOf(".") != -1).Select(s => s.Substring(s.IndexOf(".") + 1)) )}).ToList(); } + + /// + /// User clicked on a link + /// + private void Hyperlink_OnRequestNavigate(object sender, RequestNavigateEventArgs e) { + Process.Start(new ProcessStartInfo {FileName = e.Uri.ToString(), UseShellExecute = true}); + } } // Replacement for TreeViewItem that includes checkbox state