Changeset 785 for trunk/sources/HeuristicLab.Hive.Server.Console
- Timestamp:
- 11/19/08 17:05:56 (16 years ago)
- Location:
- trunk/sources/HeuristicLab.Hive.Server.Console
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Hive.Server.Console
-
Property
svn:ignore
set to
*.user
bin
obj
-
Property
svn:ignore
set to
-
trunk/sources/HeuristicLab.Hive.Server.Console/HiveServerConsole.cs
r778 r785 34 34 public partial class HiveServerConsole : Form { 35 35 36 HiveServerConsoleInformation information = null; 36 37 37 38 public HiveServerConsole() { … … 47 48 if (ipIsValid()) { 48 49 this.Visible = false; 49 // Forminformation = new HiveServerConsoleInformation();50 // Application.Run(information);51 this.Visible = true;50 information = new HiveServerConsoleInformation(); 51 information.closeFormEvent += new closeForm(enableForm); 52 information.Show(); 52 53 } 53 54 } … … 56 57 return true; 57 58 } 59 60 private void enableForm(bool cf) { 61 if (cf) { 62 this.Visible = true; 63 } 64 } 58 65 } 59 66 } -
trunk/sources/HeuristicLab.Hive.Server.Console/HiveServerConsoleInformation.Designer.cs
r778 r785 24 24 /// </summary> 25 25 private void InitializeComponent() { 26 this.menuStrip1 = new System.Windows.Forms.MenuStrip(); 27 this.informationToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); 28 this.closeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); 29 this.menuStrip1.SuspendLayout(); 26 30 this.SuspendLayout(); 31 // 32 // menuStrip1 33 // 34 this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { 35 this.informationToolStripMenuItem}); 36 this.menuStrip1.Location = new System.Drawing.Point(0, 0); 37 this.menuStrip1.Name = "menuStrip1"; 38 this.menuStrip1.Size = new System.Drawing.Size(651, 24); 39 this.menuStrip1.TabIndex = 0; 40 this.menuStrip1.Text = "menuStrip1"; 41 // 42 // informationToolStripMenuItem 43 // 44 this.informationToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { 45 this.closeToolStripMenuItem}); 46 this.informationToolStripMenuItem.Name = "informationToolStripMenuItem"; 47 this.informationToolStripMenuItem.Size = new System.Drawing.Size(75, 20); 48 this.informationToolStripMenuItem.Text = "Information"; 49 // 50 // closeToolStripMenuItem 51 // 52 this.closeToolStripMenuItem.Name = "closeToolStripMenuItem"; 53 this.closeToolStripMenuItem.Size = new System.Drawing.Size(152, 22); 54 this.closeToolStripMenuItem.Text = "Close"; 55 this.closeToolStripMenuItem.Click += new System.EventHandler(this.close_Click); 27 56 // 28 57 // HiveServerConsoleInformation … … 31 60 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 32 61 this.ClientSize = new System.Drawing.Size(651, 402); 62 this.Controls.Add(this.menuStrip1); 63 this.MainMenuStrip = this.menuStrip1; 33 64 this.Name = "HiveServerConsoleInformation"; 34 65 this.Text = "HiveServerConsoleInformation"; 66 this.Click += new System.EventHandler(this.close_Click); 67 this.menuStrip1.ResumeLayout(false); 68 this.menuStrip1.PerformLayout(); 35 69 this.ResumeLayout(false); 70 this.PerformLayout(); 36 71 37 72 } 38 73 39 74 #endregion 75 76 private System.Windows.Forms.MenuStrip menuStrip1; 77 private System.Windows.Forms.ToolStripMenuItem informationToolStripMenuItem; 78 private System.Windows.Forms.ToolStripMenuItem closeToolStripMenuItem; 40 79 } 41 80 } -
trunk/sources/HeuristicLab.Hive.Server.Console/HiveServerConsoleInformation.cs
r778 r785 1 using System; 1 #region License Information 2 /* HeuristicLab 3 * Copyright (C) 2002-2008 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 * 5 * This file is part of HeuristicLab. 6 * 7 * HeuristicLab is free software: you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation, either version 3 of the License, or 10 * (at your option) any later version. 11 * 12 * HeuristicLab is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License 18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>. 19 */ 20 #endregion 21 22 using System; 2 23 using System.Collections.Generic; 3 24 using System.ComponentModel; … … 9 30 10 31 namespace HeuristicLab.Hive.Server.Console { 32 33 public delegate void closeForm(bool cf); 34 11 35 public partial class HiveServerConsoleInformation : Form { 36 37 public event closeForm closeFormEvent; 38 12 39 public HiveServerConsoleInformation() { 13 40 InitializeComponent(); 14 41 } 42 43 private void close_Click(object sender, EventArgs e) { 44 if (closeFormEvent != null) { 45 closeFormEvent(true); 46 } 47 this.Close(); 48 } 15 49 } 16 50 } -
trunk/sources/HeuristicLab.Hive.Server.Console/HiveServerConsoleInformation.resx
r778 r785 118 118 <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> 119 119 </resheader> 120 <metadata name="menuStrip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> 121 <value>17, 17</value> 122 </metadata> 120 123 </root> -
trunk/sources/HeuristicLab.Hive.Server.Console/Properties
-
Property
svn:ignore
set to
AssemblyInfo.cs
-
Property
svn:ignore
set to
Note: See TracChangeset
for help on using the changeset viewer.