Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface.OptimizerIntegration/Shared/ArrayJsonItemControl.Designer.cs @ 17828

Last change on this file since 17828 was 17828, checked in by dpiringe, 3 years ago

#3026

  • removed the option to set the value for JsonItems via exporter
    • reworked some base controls
    • added new controls for JsonItem specific properties (e.g. ArrayResizable)
    • deleted a lot of obsolet controls
  • removed the Enable checkbox in the detail view of JsonItems
  • exporter now clones the IOptimizer object
  • added a check + message for unsupported exports
  • list of JsonItems now includes unsupported JsonItems (disabled and marked with 'unsupported')
  • refactored the converter type check
    • now every converter has to specify its supported type(s)
File size: 5.1 KB
Line 
1
2namespace HeuristicLab.JsonInterface.OptimizerIntegration {
3  partial class ArrayJsonItemControl {
4    /// <summary>
5    /// Erforderliche Designervariable.
6    /// </summary>
7    private System.ComponentModel.IContainer components = null;
8
9    /// <summary>
10    /// Verwendete Ressourcen bereinigen.
11    /// </summary>
12    /// <param name="disposing">True, wenn verwaltete Ressourcen gelöscht werden sollen; andernfalls 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 Vom Komponenten-Designer generierter Code
21
22    /// <summary>
23    /// Erforderliche Methode für die Designerunterstützung.
24    /// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
25    /// </summary>
26    private void InitializeComponent() {
27      this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
28      this.groupBox2 = new System.Windows.Forms.GroupBox();
29      this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
30      this.checkBoxResizable = new System.Windows.Forms.CheckBox();
31      this.tableLayoutPanel1.SuspendLayout();
32      this.groupBox2.SuspendLayout();
33      this.tableLayoutPanel2.SuspendLayout();
34      this.SuspendLayout();
35      //
36      // tableLayoutPanel1
37      //
38      this.tableLayoutPanel1.ColumnCount = 1;
39      this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
40      this.tableLayoutPanel1.Controls.Add(this.groupBox2, 0, 0);
41      this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
42      this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
43      this.tableLayoutPanel1.Name = "tableLayoutPanel1";
44      this.tableLayoutPanel1.RowCount = 2;
45      this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 41F));
46      this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
47      this.tableLayoutPanel1.Size = new System.Drawing.Size(526, 41);
48      this.tableLayoutPanel1.TabIndex = 24;
49      //
50      // groupBox2
51      //
52      this.groupBox2.Controls.Add(this.tableLayoutPanel2);
53      this.groupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
54      this.groupBox2.Location = new System.Drawing.Point(0, 0);
55      this.groupBox2.Margin = new System.Windows.Forms.Padding(0);
56      this.groupBox2.Name = "groupBox2";
57      this.groupBox2.Size = new System.Drawing.Size(526, 41);
58      this.groupBox2.TabIndex = 19;
59      this.groupBox2.TabStop = false;
60      this.groupBox2.Text = "Array Properties";
61      //
62      // tableLayoutPanel2
63      //
64      this.tableLayoutPanel2.ColumnCount = 1;
65      this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
66      this.tableLayoutPanel2.Controls.Add(this.checkBoxResizable, 0, 0);
67      this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
68      this.tableLayoutPanel2.Location = new System.Drawing.Point(3, 16);
69      this.tableLayoutPanel2.Margin = new System.Windows.Forms.Padding(0);
70      this.tableLayoutPanel2.Name = "tableLayoutPanel2";
71      this.tableLayoutPanel2.RowCount = 1;
72      this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
73      this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
74      this.tableLayoutPanel2.Size = new System.Drawing.Size(520, 22);
75      this.tableLayoutPanel2.TabIndex = 22;
76      //
77      // checkBoxResizable
78      //
79      this.checkBoxResizable.AutoSize = true;
80      this.checkBoxResizable.Dock = System.Windows.Forms.DockStyle.Fill;
81      this.checkBoxResizable.Location = new System.Drawing.Point(0, 0);
82      this.checkBoxResizable.Margin = new System.Windows.Forms.Padding(0);
83      this.checkBoxResizable.Name = "checkBoxResizable";
84      this.checkBoxResizable.Size = new System.Drawing.Size(520, 22);
85      this.checkBoxResizable.TabIndex = 4;
86      this.checkBoxResizable.Text = "Resizable";
87      this.checkBoxResizable.UseVisualStyleBackColor = true;
88      //
89      // ArrayJsonItemControl
90      //
91      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
92      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
93      this.Controls.Add(this.tableLayoutPanel1);
94      this.Name = "ArrayJsonItemControl";
95      this.Size = new System.Drawing.Size(526, 41);
96      this.tableLayoutPanel1.ResumeLayout(false);
97      this.groupBox2.ResumeLayout(false);
98      this.tableLayoutPanel2.ResumeLayout(false);
99      this.tableLayoutPanel2.PerformLayout();
100      this.ResumeLayout(false);
101
102    }
103
104    #endregion
105
106    private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
107    private System.Windows.Forms.GroupBox groupBox2;
108    private System.Windows.Forms.TableLayoutPanel tableLayoutPanel2;
109    private System.Windows.Forms.CheckBox checkBoxResizable;
110  }
111}
Note: See TracBrowser for help on using the repository browser.