Example #1
0
 public void OptionformOpen()
 {
     optionform = new OptionForm();
     //optionform.TopLevel = false;
     //optionform.Parent = DockingPanel;
     //optionform.FormBorderStyle = FormBorderStyle.None;
     //optionform.StartPosition = FormStartPosition.CenterParent;
     STATE = PRESENT.OPTION;
     try
     {
         optionform.Show();
     }
     catch
     {
     }
 }
Example #2
0
 public void SelfformOpen()
 {
     selfform                 = new SelfForm(this);
     selfform.TopLevel        = false;
     selfform.Parent          = DockingPanel;
     selfform.FormBorderStyle = FormBorderStyle.None;
     selfform.StartPosition   = FormStartPosition.CenterParent;
     STATE = PRESENT.SELF;
     try
     {
         selfform.Show();
     }
     catch
     {
     }
 }
Example #3
0
 public void LogformOpen()
 {
     logform                 = new LogForm();
     logform.TopLevel        = false;
     logform.Parent          = DockingPanel;
     logform.FormBorderStyle = FormBorderStyle.None;
     logform.StartPosition   = FormStartPosition.CenterParent;
     STATE = PRESENT.LOG;
     try
     {
         logform.Show();
     }
     catch
     {
     }
 }
Example #4
0
 public void ProfileformOpen()
 {
     profileform                 = new ProfileForm();
     profileform.TopLevel        = false;
     profileform.Parent          = DockingPanel;
     profileform.FormBorderStyle = FormBorderStyle.None;
     profileform.StartPosition   = FormStartPosition.CenterParent;
     STATE = PRESENT.PROFILE;
     try
     {
         profileform.Show();
     }
     catch
     {
     }
 }
Example #5
0
 public void TestformOpen()
 {
     testform                 = new TestForm(this);
     testform.TopLevel        = false;
     testform.Parent          = DockingPanel;
     testform.FormBorderStyle = FormBorderStyle.None;
     testform.StartPosition   = FormStartPosition.CenterParent;
     STATE = PRESENT.TEST;
     try
     {
         testform.Show();
     }
     catch
     {
     }
 }
Example #6
0
 public void SetPresent(PRESENT set)
 {
     STATE = set;
 }