mirror of
https://github.com/claunia/libexeinfo.git
synced 2025-12-16 19:14:24 +00:00
Added GUI page for strings.
This commit is contained in:
@@ -42,6 +42,7 @@ namespace exeinfogui
|
||||
TextBox txtOs;
|
||||
TextBox txtSubsystem;
|
||||
TextBox txtType;
|
||||
TabControl tabMain;
|
||||
|
||||
public MainForm()
|
||||
{
|
||||
@@ -105,6 +106,12 @@ namespace exeinfogui
|
||||
txtSubsystem.Visible = true;
|
||||
txtSubsystem.Text = recognizedExe.RequiredOperatingSystem.Subsystem;
|
||||
}
|
||||
|
||||
if(recognizedExe.Strings != null && recognizedExe.Strings.Any())
|
||||
{
|
||||
TabPageStrings tabStrings = new TabPageStrings(recognizedExe.Strings);
|
||||
tabMain.Pages.Add(tabStrings);
|
||||
}
|
||||
}
|
||||
|
||||
protected void OnMnuAboutClick(object sender, EventArgs e)
|
||||
|
||||
Reference in New Issue
Block a user