Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave.TrayIcon/3.3/MainWindow.Designer.cs @ 6730

Last change on this file since 6730 was 6730, checked in by ascheibe, 13 years ago

#1233 added Hive Slave HL App client

File size: 2.4 KB
Line 
1
2namespace HeuristicLab.Clients.Hive.SlaveCore.SlaveTrayIcon {
3  partial class MainWindow {
4    /// <summary>
5    /// Required designer variable.
6    /// </summary>
7    private System.ComponentModel.IContainer components = null;
8
9    /// <summary>
10    /// Clean up any resources being used.
11    /// </summary>
12    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
13    protected override void Dispose(bool disposing) {
14      if (disposing && (components != null)) {
15        components.Dispose();
16      }
17      base.Dispose(disposing);
18    }
19
20    #region Windows Form Designer generated code
21
22    /// <summary>
23    /// Required method for Designer support - do not modify
24    /// the contents of this method with the code editor.
25    /// </summary>
26    private void InitializeComponent() {
27      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainWindow));
28      this.slaveMainView = new HeuristicLab.Clients.Hive.SlaveCore.Views.SlaveMainViewTray();
29      this.SuspendLayout();
30      //
31      // slaveMainView
32      //
33      this.slaveMainView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
34                  | System.Windows.Forms.AnchorStyles.Left)
35                  | System.Windows.Forms.AnchorStyles.Right)));
36      this.slaveMainView.Caption = "HeuristicLab Slave Main View";
37      this.slaveMainView.Content = null;
38      this.slaveMainView.Location = new System.Drawing.Point(12, 12);
39      this.slaveMainView.Name = "slaveMainView";
40      this.slaveMainView.ReadOnly = false;
41      this.slaveMainView.Size = new System.Drawing.Size(662, 471);
42      this.slaveMainView.TabIndex = 0;
43      this.slaveMainView.WindowState = System.Windows.Forms.FormWindowState.Normal;
44      //
45      // MainWindow
46      //
47      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
48      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
49      this.ClientSize = new System.Drawing.Size(686, 495);
50      this.Controls.Add(this.slaveMainView);
51      this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
52      this.Name = "MainWindow";
53      this.Text = "HeuristicLab Hive Slave";
54      this.ResumeLayout(false);
55
56    }
57
58    #endregion
59
60    private Views.SlaveMainViewTray slaveMainView;
61
62  }
63}
64
Note: See TracBrowser for help on using the repository browser.