Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface.OptimizerIntegration/Views/JsonItemMultiValueControl.Designer.cs @ 17431

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

#3026:

  • renamed JsonItemArrayValueControl to JsonItemMultiValueControl
  • extracted converter logic from property Value in JsonItem<V,R> into new private method ConvertObject
  • added references to TreeNode and TreeView in JsonItemVMBase -> for additional user feedback when enabling/disabling an item (changes the fore color of referenced node)
  • changed implementation and interplay between ArrayValueVM and JsonItemMultiValueControl -> removed the direct access of property DataSource of DataGridView -> now: dynamically adds new columns/rows and accesses grid cells manually (better handling with matrices)
  • added new VM MatrixValueVM
File size: 3.1 KB
Line 
1namespace HeuristicLab.JsonInterface.OptimizerIntegration {
2  partial class JsonItemMultiValueControl<T> {
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.dataGridView = new System.Windows.Forms.DataGridView();
27      this.numericRangeControl1 = new HeuristicLab.JsonInterface.OptimizerIntegration.NumericRangeControl();
28      ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
29      this.SuspendLayout();
30      //
31      // dataGridView
32      //
33      this.dataGridView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
34            | System.Windows.Forms.AnchorStyles.Left)
35            | System.Windows.Forms.AnchorStyles.Right)));
36      this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
37      this.dataGridView.Location = new System.Drawing.Point(9, 75);
38      this.dataGridView.Name = "dataGridView";
39      this.dataGridView.Size = new System.Drawing.Size(487, 171);
40      this.dataGridView.TabIndex = 13;
41      //
42      // numericRangeControl1
43      //
44      this.numericRangeControl1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
45            | System.Windows.Forms.AnchorStyles.Right)));
46      this.numericRangeControl1.Location = new System.Drawing.Point(9, 252);
47      this.numericRangeControl1.Name = "numericRangeControl1";
48      this.numericRangeControl1.Size = new System.Drawing.Size(487, 128);
49      this.numericRangeControl1.TabIndex = 14;
50      //
51      // JsonItemArrayValueControl
52      //
53      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
54      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
55      this.Controls.Add(this.numericRangeControl1);
56      this.Controls.Add(this.dataGridView);
57      this.Name = "JsonItemArrayValueControl";
58      this.Size = new System.Drawing.Size(502, 386);
59      this.Controls.SetChildIndex(this.dataGridView, 0);
60      this.Controls.SetChildIndex(this.numericRangeControl1, 0);
61      ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
62      this.ResumeLayout(false);
63      this.PerformLayout();
64
65    }
66
67    #endregion
68
69    private System.Windows.Forms.DataGridView dataGridView;
70    private NumericRangeControl numericRangeControl1;
71  }
72}
Note: See TracBrowser for help on using the repository browser.