Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface.OptimizerIntegration/Shared/ConcreteItemsRestrictor.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: 3.2 KB
RevLine 
[17519]1namespace HeuristicLab.JsonInterface.OptimizerIntegration {
2  partial class ConcreteItemsRestrictor {
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.tableOptions = new System.Windows.Forms.TableLayoutPanel();
[17828]27      this.groupBox1 = new System.Windows.Forms.GroupBox();
28      this.groupBox1.SuspendLayout();
[17519]29      this.SuspendLayout();
30      //
31      // tableOptions
32      //
33      this.tableOptions.AutoScroll = true;
34      this.tableOptions.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
35      this.tableOptions.ColumnCount = 2;
36      this.tableOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F));
37      this.tableOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
38      this.tableOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F));
39      this.tableOptions.Dock = System.Windows.Forms.DockStyle.Fill;
[17828]40      this.tableOptions.Location = new System.Drawing.Point(3, 16);
41      this.tableOptions.Margin = new System.Windows.Forms.Padding(0);
[17519]42      this.tableOptions.Name = "tableOptions";
43      this.tableOptions.RowCount = 1;
44      this.tableOptions.RowStyles.Add(new System.Windows.Forms.RowStyle());
[17828]45      this.tableOptions.Size = new System.Drawing.Size(494, 181);
[17519]46      this.tableOptions.TabIndex = 13;
47      //
[17828]48      // groupBox1
49      //
50      this.groupBox1.Controls.Add(this.tableOptions);
51      this.groupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
52      this.groupBox1.Location = new System.Drawing.Point(0, 0);
53      this.groupBox1.Margin = new System.Windows.Forms.Padding(0);
54      this.groupBox1.Name = "groupBox1";
55      this.groupBox1.Size = new System.Drawing.Size(500, 200);
56      this.groupBox1.TabIndex = 0;
57      this.groupBox1.TabStop = false;
58      this.groupBox1.Text = "Allowed Items";
59      //
[17519]60      // ConcreteItemsRestrictor
61      //
62      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
63      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
[17828]64      this.Controls.Add(this.groupBox1);
[17519]65      this.Margin = new System.Windows.Forms.Padding(0);
66      this.Name = "ConcreteItemsRestrictor";
67      this.Size = new System.Drawing.Size(500, 200);
[17828]68      this.groupBox1.ResumeLayout(false);
[17519]69      this.ResumeLayout(false);
70
71    }
72
73    #endregion
74
75    private System.Windows.Forms.TableLayoutPanel tableOptions;
[17828]76    private System.Windows.Forms.GroupBox groupBox1;
[17519]77  }
78}
Note: See TracBrowser for help on using the repository browser.