Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface.OptimizerIntegration/Shared/MatrixJsonItemControl.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: 6.2 KB
Line 
1
2namespace HeuristicLab.JsonInterface.OptimizerIntegration {
3  partial class MatrixJsonItemControl {
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.checkBoxColumnsResizable = new System.Windows.Forms.CheckBox();
31      this.checkBoxRowsResizable = new System.Windows.Forms.CheckBox();
32      this.tableLayoutPanel1.SuspendLayout();
33      this.groupBox2.SuspendLayout();
34      this.tableLayoutPanel2.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.Controls.Add(this.groupBox2, 0, 0);
42      this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
43      this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
44      this.tableLayoutPanel1.Name = "tableLayoutPanel1";
45      this.tableLayoutPanel1.RowCount = 2;
46      this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 63F));
47      this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
48      this.tableLayoutPanel1.Size = new System.Drawing.Size(526, 63);
49      this.tableLayoutPanel1.TabIndex = 24;
50      //
51      // groupBox2
52      //
53      this.groupBox2.Controls.Add(this.tableLayoutPanel2);
54      this.groupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
55      this.groupBox2.Location = new System.Drawing.Point(0, 0);
56      this.groupBox2.Margin = new System.Windows.Forms.Padding(0);
57      this.groupBox2.Name = "groupBox2";
58      this.groupBox2.Size = new System.Drawing.Size(526, 63);
59      this.groupBox2.TabIndex = 19;
60      this.groupBox2.TabStop = false;
61      this.groupBox2.Text = "Matrix Properties";
62      //
63      // tableLayoutPanel2
64      //
65      this.tableLayoutPanel2.ColumnCount = 1;
66      this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
67      this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F));
68      this.tableLayoutPanel2.Controls.Add(this.checkBoxRowsResizable, 0, 0);
69      this.tableLayoutPanel2.Controls.Add(this.checkBoxColumnsResizable, 0, 1);
70      this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
71      this.tableLayoutPanel2.Location = new System.Drawing.Point(3, 16);
72      this.tableLayoutPanel2.Margin = new System.Windows.Forms.Padding(0);
73      this.tableLayoutPanel2.Name = "tableLayoutPanel2";
74      this.tableLayoutPanel2.RowCount = 2;
75      this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
76      this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
77      this.tableLayoutPanel2.Size = new System.Drawing.Size(520, 44);
78      this.tableLayoutPanel2.TabIndex = 22;
79      //
80      // checkBoxColumnsResizable
81      //
82      this.checkBoxColumnsResizable.AutoSize = true;
83      this.checkBoxColumnsResizable.Dock = System.Windows.Forms.DockStyle.Fill;
84      this.checkBoxColumnsResizable.Location = new System.Drawing.Point(0, 22);
85      this.checkBoxColumnsResizable.Margin = new System.Windows.Forms.Padding(0);
86      this.checkBoxColumnsResizable.Name = "checkBoxColumnsResizable";
87      this.checkBoxColumnsResizable.Size = new System.Drawing.Size(520, 22);
88      this.checkBoxColumnsResizable.TabIndex = 7;
89      this.checkBoxColumnsResizable.Text = "Columns Resizable";
90      this.checkBoxColumnsResizable.UseVisualStyleBackColor = true;
91      //
92      // checkBoxRowsResizable
93      //
94      this.checkBoxRowsResizable.AutoSize = true;
95      this.checkBoxRowsResizable.Dock = System.Windows.Forms.DockStyle.Fill;
96      this.checkBoxRowsResizable.Location = new System.Drawing.Point(0, 0);
97      this.checkBoxRowsResizable.Margin = new System.Windows.Forms.Padding(0);
98      this.checkBoxRowsResizable.Name = "checkBoxRowsResizable";
99      this.checkBoxRowsResizable.Size = new System.Drawing.Size(520, 22);
100      this.checkBoxRowsResizable.TabIndex = 4;
101      this.checkBoxRowsResizable.Text = "Rows Resizable";
102      this.checkBoxRowsResizable.UseVisualStyleBackColor = true;
103      //
104      // MatrixJsonItemControl
105      //
106      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
107      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
108      this.Controls.Add(this.tableLayoutPanel1);
109      this.Name = "MatrixJsonItemControl";
110      this.Size = new System.Drawing.Size(526, 63);
111      this.tableLayoutPanel1.ResumeLayout(false);
112      this.groupBox2.ResumeLayout(false);
113      this.tableLayoutPanel2.ResumeLayout(false);
114      this.tableLayoutPanel2.PerformLayout();
115      this.ResumeLayout(false);
116
117    }
118
119    #endregion
120
121    private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
122    private System.Windows.Forms.GroupBox groupBox2;
123    private System.Windows.Forms.TableLayoutPanel tableLayoutPanel2;
124    private System.Windows.Forms.CheckBox checkBoxRowsResizable;
125    private System.Windows.Forms.CheckBox checkBoxColumnsResizable;
126  }
127}
Note: See TracBrowser for help on using the repository browser.