1 |
|
---|
2 | namespace 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(590, 488);
|
---|
42 | this.slaveMainView.TabIndex = 0;
|
---|
43 | //
|
---|
44 | // MainWindow
|
---|
45 | //
|
---|
46 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
47 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
48 | this.ClientSize = new System.Drawing.Size(614, 512);
|
---|
49 | this.Controls.Add(this.slaveMainView);
|
---|
50 | this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
---|
51 | this.Name = "MainWindow";
|
---|
52 | this.Text = "HeuristicLab Hive Slave";
|
---|
53 | this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainWindow_FormClosing);
|
---|
54 | this.ResumeLayout(false);
|
---|
55 |
|
---|
56 | }
|
---|
57 |
|
---|
58 | #endregion
|
---|
59 |
|
---|
60 | private Views.SlaveMainViewTray slaveMainView;
|
---|
61 |
|
---|
62 | }
|
---|
63 | }
|
---|
64 |
|
---|