Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface.OptimizerIntegration/Shared/CompoundControl.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: 2.3 KB
Line 
1
2namespace HeuristicLab.JsonInterface.OptimizerIntegration {
3  partial class CompoundControl {
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.SuspendLayout();
29      //
30      // tableLayoutPanel1
31      //
32      this.tableLayoutPanel1.ColumnCount = 1;
33      this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
34      this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
35      this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
36      this.tableLayoutPanel1.Margin = new System.Windows.Forms.Padding(0);
37      this.tableLayoutPanel1.Name = "tableLayoutPanel1";
38      this.tableLayoutPanel1.RowCount = 2;
39      this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
40      this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
41      this.tableLayoutPanel1.Size = new System.Drawing.Size(526, 22);
42      this.tableLayoutPanel1.TabIndex = 0;
43      //
44      // CompoundControl
45      //
46      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
47      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
48      this.Controls.Add(this.tableLayoutPanel1);
49      this.Margin = new System.Windows.Forms.Padding(0);
50      this.Name = "CompoundControl";
51      this.Size = new System.Drawing.Size(526, 22);
52      this.ResumeLayout(false);
53
54    }
55
56    #endregion
57
58    private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
59  }
60}
Note: See TracBrowser for help on using the repository browser.