Free cookie consent management tool by TermsFeed Policy Generator

Changeset 794 for trunk


Ignore:
Timestamp:
11/20/08 16:27:57 (16 years ago)
Author:
aleitner
Message:

Design of Management-Console for HiveServer (#369)

Location:
trunk/sources/HeuristicLab.Hive.Server.Console
Files:
3 added
3 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Hive.Server.Console/HeuristicLab.Hive.Server.Console.csproj

    r778 r794  
    6060    </Compile>
    6161    <Compile Include="HiveServerConsoleApplication.cs" />
    62     <Compile Include="HiveServerConsoleInformation.cs">
     62    <Compile Include="HiveServerManagementConsole.cs">
    6363      <SubType>Form</SubType>
    6464    </Compile>
    65     <Compile Include="HiveServerConsoleInformation.Designer.cs">
    66       <DependentUpon>HiveServerConsoleInformation.cs</DependentUpon>
     65    <Compile Include="HiveServerManagementConsole.Designer.cs">
     66      <DependentUpon>HiveServerManagementConsole.cs</DependentUpon>
    6767    </Compile>
    6868    <Compile Include="HiveServerConsolePlugin.cs" />
     
    7474      <DependentUpon>HiveServerConsole.cs</DependentUpon>
    7575    </EmbeddedResource>
    76     <EmbeddedResource Include="HiveServerConsoleInformation.resx">
    77       <DependentUpon>HiveServerConsoleInformation.cs</DependentUpon>
     76    <EmbeddedResource Include="HiveServerManagementConsole.resx">
     77      <DependentUpon>HiveServerManagementConsole.cs</DependentUpon>
    7878    </EmbeddedResource>
    7979    <EmbeddedResource Include="Properties\Resources.resx">
  • trunk/sources/HeuristicLab.Hive.Server.Console/HiveServerConsole.cs

    r785 r794  
    2828using System.Text;
    2929using System.Windows.Forms;
    30 using System.Threading;
    3130
    3231namespace HeuristicLab.Hive.Server.Console {
     
    3433  public partial class HiveServerConsole : Form {
    3534
    36     HiveServerConsoleInformation information = null;
     35    HiveServerManagementConsole information = null;
    3736
    3837    public HiveServerConsole() {
     
    4544    }
    4645
     46    /// <summary>
     47    /// When login button is clicked, the ManagementConsole
     48    /// will be opened
     49    /// </summary>
     50    /// <param name="sender"></param>
     51    /// <param name="e"></param>
    4752    private void btnLogin_Click(object sender, EventArgs e) {
    4853      if (ipIsValid()) {
    4954        this.Visible = false;
    50         information = new HiveServerConsoleInformation();
     55        information = new HiveServerManagementConsole();
    5156        information.closeFormEvent += new closeForm(enableForm);
    5257        information.Show();
     
    5459    }
    5560
     61
    5662    private static bool ipIsValid() {
     63      // TODO IP-Adress validation
    5764      return true;
    5865    }
Note: See TracChangeset for help on using the changeset viewer.