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