mirror of
https://github.com/HyperDbg/HyperDbg.git
synced 2026-07-10 01:29:59 +00:00
20 lines
566 B
C#
20 lines
566 B
C#
using System.Windows.Forms;
|
|
|
|
namespace hyperdbg_gui.WindowManager
|
|
{
|
|
class AddWindow
|
|
{
|
|
// return is an id which describes the control
|
|
public static void CreateCommandWindow(Form MdiParrent)
|
|
{
|
|
// Make it globally available
|
|
hyperdbg_gui.Details.GlobalVariables.CommandWindow = new CommandWindow();
|
|
|
|
// Show command View
|
|
hyperdbg_gui.Details.GlobalVariables.CommandWindow.MdiParent = MdiParrent;
|
|
|
|
hyperdbg_gui.Details.GlobalVariables.CommandWindow.Show();
|
|
|
|
}
|
|
}
|
|
}
|