26 lines
534 B
C#
26 lines
534 B
C#
using System.Windows.Forms;
|
|
|
|
namespace HexExplorer
|
|
{
|
|
public partial class FrmAbout : ToolWindowBase
|
|
{
|
|
private static FrmAbout frmAbout = null;
|
|
|
|
private FrmAbout()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
public static FrmAbout Instance
|
|
{
|
|
get
|
|
{
|
|
if (frmAbout == null || frmAbout.IsDisposed)
|
|
{
|
|
frmAbout = new FrmAbout();
|
|
}
|
|
return frmAbout;
|
|
}
|
|
}
|
|
}
|
|
} |