[567] | 1 | namespace HeuristicLab.CEDMA.Charting {
|
---|
| 2 | partial class ModelView {
|
---|
| 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.splitContainer = new System.Windows.Forms.SplitContainer();
|
---|
| 27 | this.lowerSplitContainer = new System.Windows.Forms.SplitContainer();
|
---|
[576] | 28 | this.algoButton = new System.Windows.Forms.Button();
|
---|
[567] | 29 | this.splitContainer.Panel2.SuspendLayout();
|
---|
| 30 | this.splitContainer.SuspendLayout();
|
---|
| 31 | this.lowerSplitContainer.SuspendLayout();
|
---|
| 32 | this.SuspendLayout();
|
---|
| 33 | //
|
---|
| 34 | // splitContainer
|
---|
| 35 | //
|
---|
[576] | 36 | this.splitContainer.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 37 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 38 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[567] | 39 | this.splitContainer.FixedPanel = System.Windows.Forms.FixedPanel.Panel2;
|
---|
| 40 | this.splitContainer.Location = new System.Drawing.Point(0, 0);
|
---|
| 41 | this.splitContainer.Name = "splitContainer";
|
---|
| 42 | this.splitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
|
---|
| 43 | //
|
---|
| 44 | // splitContainer.Panel2
|
---|
| 45 | //
|
---|
| 46 | this.splitContainer.Panel2.Controls.Add(this.lowerSplitContainer);
|
---|
[576] | 47 | this.splitContainer.Size = new System.Drawing.Size(450, 427);
|
---|
| 48 | this.splitContainer.SplitterDistance = 185;
|
---|
[567] | 49 | this.splitContainer.TabIndex = 0;
|
---|
| 50 | //
|
---|
| 51 | // lowerSplitContainer
|
---|
| 52 | //
|
---|
| 53 | this.lowerSplitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
| 54 | this.lowerSplitContainer.FixedPanel = System.Windows.Forms.FixedPanel.Panel2;
|
---|
| 55 | this.lowerSplitContainer.Location = new System.Drawing.Point(0, 0);
|
---|
| 56 | this.lowerSplitContainer.Name = "lowerSplitContainer";
|
---|
| 57 | this.lowerSplitContainer.Size = new System.Drawing.Size(450, 238);
|
---|
| 58 | this.lowerSplitContainer.SplitterDistance = 232;
|
---|
| 59 | this.lowerSplitContainer.TabIndex = 0;
|
---|
| 60 | //
|
---|
[576] | 61 | // algoButton
|
---|
| 62 | //
|
---|
| 63 | this.algoButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 64 | this.algoButton.Location = new System.Drawing.Point(352, 433);
|
---|
| 65 | this.algoButton.Name = "algoButton";
|
---|
| 66 | this.algoButton.Size = new System.Drawing.Size(95, 23);
|
---|
| 67 | this.algoButton.TabIndex = 1;
|
---|
| 68 | this.algoButton.Text = "Open algorithm";
|
---|
| 69 | this.algoButton.UseVisualStyleBackColor = true;
|
---|
| 70 | this.algoButton.Click += new System.EventHandler(this.algoButton_Click);
|
---|
| 71 | //
|
---|
[567] | 72 | // ModelView
|
---|
| 73 | //
|
---|
| 74 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 75 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
[576] | 76 | this.Controls.Add(this.algoButton);
|
---|
[567] | 77 | this.Controls.Add(this.splitContainer);
|
---|
| 78 | this.Name = "ModelView";
|
---|
| 79 | this.Size = new System.Drawing.Size(450, 459);
|
---|
| 80 | this.splitContainer.Panel2.ResumeLayout(false);
|
---|
| 81 | this.splitContainer.ResumeLayout(false);
|
---|
| 82 | this.lowerSplitContainer.ResumeLayout(false);
|
---|
| 83 | this.ResumeLayout(false);
|
---|
| 84 |
|
---|
| 85 | }
|
---|
| 86 |
|
---|
| 87 | #endregion
|
---|
| 88 |
|
---|
| 89 | private System.Windows.Forms.SplitContainer splitContainer;
|
---|
| 90 | private System.Windows.Forms.SplitContainer lowerSplitContainer;
|
---|
[576] | 91 | private System.Windows.Forms.Button algoButton;
|
---|
[567] | 92 |
|
---|
| 93 | }
|
---|
| 94 | }
|
---|