[4981] | 1 | namespace HeuristicLab.Problems.MetaOptimization.Views.ValueConfigurationViews {
|
---|
| 2 | partial class OptimizableView {
|
---|
| 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 Component 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 | this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
|
---|
| 27 | this.optimizeCheckBox = new System.Windows.Forms.CheckBox();
|
---|
| 28 | this.SuspendLayout();
|
---|
| 29 | //
|
---|
| 30 | // viewHost
|
---|
| 31 | //
|
---|
| 32 | this.viewHost.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.viewHost.Caption = "View";
|
---|
| 36 | this.viewHost.Content = null;
|
---|
| 37 | this.viewHost.Enabled = false;
|
---|
| 38 | this.viewHost.Location = new System.Drawing.Point(0, 21);
|
---|
| 39 | this.viewHost.Name = "viewHost";
|
---|
| 40 | this.viewHost.ReadOnly = false;
|
---|
| 41 | this.viewHost.Size = new System.Drawing.Size(513, 345);
|
---|
| 42 | this.viewHost.TabIndex = 0;
|
---|
[5087] | 43 | this.viewHost.ViewsLabelVisible = false;
|
---|
[4981] | 44 | this.viewHost.ViewType = null;
|
---|
| 45 | //
|
---|
| 46 | // optimizeCheckBox
|
---|
| 47 | //
|
---|
| 48 | this.optimizeCheckBox.AutoSize = true;
|
---|
| 49 | this.optimizeCheckBox.Location = new System.Drawing.Point(3, 3);
|
---|
| 50 | this.optimizeCheckBox.Name = "optimizeCheckBox";
|
---|
| 51 | this.optimizeCheckBox.Size = new System.Drawing.Size(66, 17);
|
---|
| 52 | this.optimizeCheckBox.TabIndex = 1;
|
---|
| 53 | this.optimizeCheckBox.Text = "Optimize";
|
---|
| 54 | this.optimizeCheckBox.UseVisualStyleBackColor = true;
|
---|
| 55 | this.optimizeCheckBox.CheckedChanged += new System.EventHandler(this.optimizeCheckBox_CheckedChanged);
|
---|
| 56 | //
|
---|
| 57 | // OptimizableView
|
---|
| 58 | //
|
---|
| 59 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 60 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
| 61 | this.Controls.Add(this.optimizeCheckBox);
|
---|
| 62 | this.Controls.Add(this.viewHost);
|
---|
| 63 | this.Name = "OptimizableView";
|
---|
| 64 | this.Size = new System.Drawing.Size(513, 366);
|
---|
| 65 | this.ResumeLayout(false);
|
---|
| 66 | this.PerformLayout();
|
---|
| 67 |
|
---|
| 68 | }
|
---|
| 69 |
|
---|
| 70 | #endregion
|
---|
| 71 |
|
---|
| 72 | private MainForm.WindowsForms.ViewHost viewHost;
|
---|
| 73 | private System.Windows.Forms.CheckBox optimizeCheckBox;
|
---|
| 74 | }
|
---|
| 75 | }
|
---|