Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface.OptimizerIntegration/Views/JsonItemBoolControl.Designer.cs @ 17471

Last change on this file since 17471 was 17471, checked in by dpiringe, 4 years ago

#3026:

  • deleted INamedMatrixJsonItem and all corresponding classes/views, because of bad design
  • added ILookupJsonItem and IValueLookupJsonItem (incl. all corresponding implementations, VMs, Views)
  • added IResultJsonItem
  • changed type of property Control from JsonItemBaseControl to UserControl in IJsonItemVM (because the details control now builds up with linked user controls -> allows better construction of dynamic controls)
  • added all properties of INamedMatrixJsonItem in IMatrixJsonItem
  • refactored a lot of views for better usage (TableLayoutPanel is used a lot now -> for better item positioning)
  • property ActualName is now located in ILookupJsonItem instead of IJsonItem
File size: 3.8 KB
Line 
1namespace HeuristicLab.JsonInterface.OptimizerIntegration {
2  partial class JsonItemBoolControl {
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.checkBoxValue = new System.Windows.Forms.CheckBox();
27      this.label2 = new System.Windows.Forms.Label();
28      this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
29      this.tableLayoutPanel1.SuspendLayout();
30      this.SuspendLayout();
31      //
32      // checkBoxValue
33      //
34      this.checkBoxValue.AutoSize = true;
35      this.checkBoxValue.Dock = System.Windows.Forms.DockStyle.Fill;
36      this.checkBoxValue.Location = new System.Drawing.Point(100, 0);
37      this.checkBoxValue.Margin = new System.Windows.Forms.Padding(0);
38      this.checkBoxValue.Name = "checkBoxValue";
39      this.checkBoxValue.Size = new System.Drawing.Size(400, 22);
40      this.checkBoxValue.TabIndex = 19;
41      this.checkBoxValue.UseVisualStyleBackColor = true;
42      //
43      // label2
44      //
45      this.label2.AutoSize = true;
46      this.label2.Dock = System.Windows.Forms.DockStyle.Fill;
47      this.label2.Location = new System.Drawing.Point(0, 0);
48      this.label2.Margin = new System.Windows.Forms.Padding(0);
49      this.label2.Name = "label2";
50      this.label2.Size = new System.Drawing.Size(100, 22);
51      this.label2.TabIndex = 20;
52      this.label2.Text = "Value";
53      this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
54      //
55      // tableLayoutPanel1
56      //
57      this.tableLayoutPanel1.ColumnCount = 2;
58      this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 100F));
59      this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
60      this.tableLayoutPanel1.Controls.Add(this.checkBoxValue, 1, 0);
61      this.tableLayoutPanel1.Controls.Add(this.label2, 0, 0);
62      this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Top;
63      this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
64      this.tableLayoutPanel1.Margin = new System.Windows.Forms.Padding(0);
65      this.tableLayoutPanel1.Name = "tableLayoutPanel1";
66      this.tableLayoutPanel1.RowCount = 1;
67      this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
68      this.tableLayoutPanel1.Size = new System.Drawing.Size(500, 22);
69      this.tableLayoutPanel1.TabIndex = 22;
70      //
71      // JsonItemBoolControl
72      //
73      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
74      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
75      this.Controls.Add(this.tableLayoutPanel1);
76      this.Margin = new System.Windows.Forms.Padding(0);
77      this.Name = "JsonItemBoolControl";
78      this.Size = new System.Drawing.Size(500, 22);
79      this.tableLayoutPanel1.ResumeLayout(false);
80      this.tableLayoutPanel1.PerformLayout();
81      this.ResumeLayout(false);
82
83    }
84
85    #endregion
86    private System.Windows.Forms.CheckBox checkBoxValue;
87    private System.Windows.Forms.Label label2;
88    private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
89  }
90}
Note: See TracBrowser for help on using the repository browser.