Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface.OptimizerIntegration/Shared/ConcreteItemsRestrictor.Designer.cs @ 17530

Last change on this file since 17530 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: 2.4 KB
Line 
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();
27      this.SuspendLayout();
28      //
29      // tableOptions
30      //
31      this.tableOptions.AutoScroll = true;
32      this.tableOptions.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
33      this.tableOptions.ColumnCount = 2;
34      this.tableOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F));
35      this.tableOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
36      this.tableOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F));
37      this.tableOptions.Dock = System.Windows.Forms.DockStyle.Fill;
38      this.tableOptions.Location = new System.Drawing.Point(0, 0);
39      this.tableOptions.Name = "tableOptions";
40      this.tableOptions.RowCount = 1;
41      this.tableOptions.RowStyles.Add(new System.Windows.Forms.RowStyle());
42      this.tableOptions.Size = new System.Drawing.Size(500, 200);
43      this.tableOptions.TabIndex = 13;
44      //
45      // ConcreteItemsRestrictor
46      //
47      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
48      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
49      this.Controls.Add(this.tableOptions);
50      this.Margin = new System.Windows.Forms.Padding(0);
51      this.Name = "ConcreteItemsRestrictor";
52      this.Size = new System.Drawing.Size(500, 200);
53      this.ResumeLayout(false);
54
55    }
56
57    #endregion
58
59    private System.Windows.Forms.TableLayoutPanel tableOptions;
60  }
61}
Note: See TracBrowser for help on using the repository browser.