Esempio n. 1
0
        public FormSVIEX()
        {
            try
            {
                if (theInstance != null)
                {
                    theInstance.FillMeshComboBoxes();
                    theInstance.BringToFront();
                    return;
                }
                theInstance = this;

                InitializeComponent();

                this.ShowHint = DockState.Document;
                this.Text = "SviEx Normals";
                Gui.Docking.ShowDockContent(this, Gui.Docking.DockEditors, ContentCategory.Others);

                FillMeshComboBoxes();
            }
            catch (Exception ex)
            {
                Utility.ReportException(ex);
            }
        }
Esempio n. 2
0
        public FormSVIEX()
        {
            try
            {
                if (theInstance != null)
                {
                    theInstance.FillMeshComboBoxes();
                    theInstance.BringToFront();
                    return;
                }
                theInstance = this;

                InitializeComponent();

                this.ShowHint = DockState.Document;
                this.Text     = "SviEx Normals";
                Gui.Docking.ShowDockContent(this, Gui.Docking.DockEditors, ContentCategory.Others);

                FillMeshComboBoxes();
            }
            catch (Exception ex)
            {
                Utility.ReportException(ex);
            }
        }
Esempio n. 3
0
 void CustomDispose()
 {
     try
     {
         if (this == theInstance)
         {
             theInstance = null;
         }
     }
     catch (Exception ex)
     {
         Utility.ReportException(ex);
     }
 }
Esempio n. 4
0
 void CustomDispose()
 {
     try
     {
         if (this == theInstance)
         {
             theInstance = null;
         }
     }
     catch (Exception ex)
     {
         Utility.ReportException(ex);
     }
 }