GUI: Add footer text

This commit is contained in:
Katy Coe
2020-02-10 00:34:02 +01:00
parent 3514c377ab
commit 1a579cfd3b
2 changed files with 20 additions and 1 deletions

View File

@@ -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();
}
/// <summary>
/// User clicked on a link
/// </summary>
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