Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface.OptimizerIntegration/Views/JsonItemConcreteItemArrayControl.Designer.cs @ 17712

Last change on this file since 17712 was 17519, checked in by dpiringe, 5 years ago

#3026:

  • added error output for failed runner initialization
  • reorganised some final view models
  • TargetedJsonItemType (in JsonItemVMBase) now automatically returns the type of the defined JsonItem
  • code cleanup
  • refactored RegressionProblemDataConverter
  • added lots of comments
  • added new view for StringArrayJsonItem
  • added new UI component for concrete restricted items and used it in JsonItemConcreteItemArrayControl and JsonItemValidValuesControl
File size: 5.8 KB
Line 
1namespace HeuristicLab.JsonInterface.OptimizerIntegration {
2  partial class JsonItemConcreteItemArrayControl {
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.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
27      this.groupBox1 = new System.Windows.Forms.GroupBox();
28      this.dataGridView = new System.Windows.Forms.DataGridView();
29      this.groupBox2 = new System.Windows.Forms.GroupBox();
30      this.concreteItemsRestrictor = new HeuristicLab.JsonInterface.OptimizerIntegration.ConcreteItemsRestrictor();
31      this.tableLayoutPanel1.SuspendLayout();
32      this.groupBox1.SuspendLayout();
33      ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
34      this.groupBox2.SuspendLayout();
35      this.SuspendLayout();
36      //
37      // tableLayoutPanel1
38      //
39      this.tableLayoutPanel1.ColumnCount = 1;
40      this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
41      this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F));
42      this.tableLayoutPanel1.Controls.Add(this.groupBox1, 0, 0);
43      this.tableLayoutPanel1.Controls.Add(this.groupBox2, 0, 1);
44      this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
45      this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
46      this.tableLayoutPanel1.Margin = new System.Windows.Forms.Padding(0);
47      this.tableLayoutPanel1.Name = "tableLayoutPanel1";
48      this.tableLayoutPanel1.RowCount = 2;
49      this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
50      this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
51      this.tableLayoutPanel1.Size = new System.Drawing.Size(682, 350);
52      this.tableLayoutPanel1.TabIndex = 0;
53      //
54      // groupBox1
55      //
56      this.groupBox1.Controls.Add(this.dataGridView);
57      this.groupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
58      this.groupBox1.Location = new System.Drawing.Point(0, 0);
59      this.groupBox1.Margin = new System.Windows.Forms.Padding(0);
60      this.groupBox1.Name = "groupBox1";
61      this.groupBox1.Size = new System.Drawing.Size(682, 175);
62      this.groupBox1.TabIndex = 0;
63      this.groupBox1.TabStop = false;
64      this.groupBox1.Text = "Value";
65      //
66      // dataGridView
67      //
68      this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
69      this.dataGridView.Dock = System.Windows.Forms.DockStyle.Fill;
70      this.dataGridView.Location = new System.Drawing.Point(3, 16);
71      this.dataGridView.Name = "dataGridView";
72      this.dataGridView.Size = new System.Drawing.Size(676, 156);
73      this.dataGridView.TabIndex = 0;
74      this.dataGridView.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView_CellEndEdit);
75      this.dataGridView.RowsRemoved += new System.Windows.Forms.DataGridViewRowsRemovedEventHandler(this.dataGridView_RowsRemoved);
76      //
77      // groupBox2
78      //
79      this.groupBox2.Controls.Add(this.concreteItemsRestrictor);
80      this.groupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
81      this.groupBox2.Location = new System.Drawing.Point(0, 175);
82      this.groupBox2.Margin = new System.Windows.Forms.Padding(0);
83      this.groupBox2.Name = "groupBox2";
84      this.groupBox2.Size = new System.Drawing.Size(682, 175);
85      this.groupBox2.TabIndex = 1;
86      this.groupBox2.TabStop = false;
87      this.groupBox2.Text = "Range";
88      //
89      // concreteItemsRestrictor
90      //
91      this.concreteItemsRestrictor.Dock = System.Windows.Forms.DockStyle.Fill;
92      this.concreteItemsRestrictor.Location = new System.Drawing.Point(3, 16);
93      this.concreteItemsRestrictor.Margin = new System.Windows.Forms.Padding(0);
94      this.concreteItemsRestrictor.Name = "concreteItemsRestrictor";
95      this.concreteItemsRestrictor.Size = new System.Drawing.Size(676, 156);
96      this.concreteItemsRestrictor.TabIndex = 0;
97      //
98      // JsonItemConcreteItemArrayControl
99      //
100      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
101      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
102      this.Controls.Add(this.tableLayoutPanel1);
103      this.Margin = new System.Windows.Forms.Padding(0);
104      this.Name = "JsonItemConcreteItemArrayControl";
105      this.Size = new System.Drawing.Size(682, 350);
106      this.tableLayoutPanel1.ResumeLayout(false);
107      this.groupBox1.ResumeLayout(false);
108      ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
109      this.groupBox2.ResumeLayout(false);
110      this.ResumeLayout(false);
111
112    }
113
114    #endregion
115
116    private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
117    private System.Windows.Forms.GroupBox groupBox1;
118    private System.Windows.Forms.DataGridView dataGridView;
119    private System.Windows.Forms.GroupBox groupBox2;
120    private ConcreteItemsRestrictor concreteItemsRestrictor;
121  }
122}
Note: See TracBrowser for help on using the repository browser.