Ejemplo n.º 1
0
 //Singleton-Pattern: Only one time the reference book gets opened
 public static FrmGuide getInstance()
 {
     if (instance == null || instance.IsDisposed)
     {
         instance = new FrmGuide();
     }
     return(instance);
 }
Ejemplo n.º 2
0
 private FrmGuide()
 {
     InitializeComponent();
     if (current == null)
     {
         current = this;
     }
     rtbContent.Rtf = Properties.Resources.index;
 }
Ejemplo n.º 3
0
        private void showHelpFrmGuide()
        {
            FrmGuide frmGuide = FrmGuide.getInstance();

            if (!frmGuide.IsDisposed)
            {
                frmGuide.Show();
            }
        }