Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface.OptimizerIntegration/Views/ExportJsonDialog.Designer.cs @ 17404

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

#3026:

  • fixed a bug in BaseConverter -> the range for percent values should be returned correctly now
  • fixed a bug in ConstrainedValueParameterConverter, ParameterizedItemConverter, ValueParameterConverter -> unsupported json items get filtered now
  • JCGenerator is now a dynamic class and can return all JsonItems for an IOptimizer now (instead of string only) + it is now possible to generate an template string with an IEnumerable<JsonItem>
  • added first version of an export dialog for JsonInterface
    • it is organized with a main view (for the dialog) and some user controls (for a better visualization of an JsonItem -> to reduce wrong user inputs)
    • the user controls inherit a base control, which organizes some base values of an JsonItem
File size: 4.1 KB
Line 
1namespace HeuristicLab.JsonInterface.OptimizerIntegration {
2  partial class ExportJsonDialog {
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 Windows Form 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.components = new System.ComponentModel.Container();
27      this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
28      this.exportButton = new System.Windows.Forms.Button();
29      this.tabel = new System.Windows.Forms.TableLayoutPanel();
30      this.jsonItemBindingSource = new System.Windows.Forms.BindingSource(this.components);
31      ((System.ComponentModel.ISupportInitialize)(this.jsonItemBindingSource)).BeginInit();
32      this.SuspendLayout();
33      //
34      // dataGridViewTextBoxColumn1
35      //
36      this.dataGridViewTextBoxColumn1.DataPropertyName = "Value";
37      this.dataGridViewTextBoxColumn1.HeaderText = "Value";
38      this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
39      //
40      // exportButton
41      //
42      this.exportButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
43      this.exportButton.Location = new System.Drawing.Point(397, 515);
44      this.exportButton.Name = "exportButton";
45      this.exportButton.Size = new System.Drawing.Size(121, 34);
46      this.exportButton.TabIndex = 1;
47      this.exportButton.Text = "Export";
48      this.exportButton.UseVisualStyleBackColor = true;
49      this.exportButton.Click += new System.EventHandler(this.exportButton_Click);
50      //
51      // tabel
52      //
53      this.tabel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
54            | System.Windows.Forms.AnchorStyles.Left)
55            | System.Windows.Forms.AnchorStyles.Right)));
56      this.tabel.AutoScroll = true;
57      this.tabel.BackColor = System.Drawing.SystemColors.Control;
58      this.tabel.ColumnCount = 1;
59      this.tabel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
60      this.tabel.Location = new System.Drawing.Point(12, 12);
61      this.tabel.Name = "tabel";
62      this.tabel.RowCount = 1;
63      this.tabel.RowStyles.Add(new System.Windows.Forms.RowStyle());
64      this.tabel.Size = new System.Drawing.Size(506, 497);
65      this.tabel.TabIndex = 2;
66      //
67      // jsonItemBindingSource
68      //
69      this.jsonItemBindingSource.DataSource = typeof(HeuristicLab.JsonInterface.JsonItem);
70      //
71      // ExportJsonDialog
72      //
73      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
74      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
75      this.ClientSize = new System.Drawing.Size(530, 561);
76      this.Controls.Add(this.exportButton);
77      this.Controls.Add(this.tabel);
78      this.Name = "ExportJsonDialog";
79      this.RightToLeft = System.Windows.Forms.RightToLeft.No;
80      this.ShowIcon = false;
81      this.Text = "Export Json";
82      ((System.ComponentModel.ISupportInitialize)(this.jsonItemBindingSource)).EndInit();
83      this.ResumeLayout(false);
84
85    }
86
87    #endregion
88
89    private System.Windows.Forms.GroupBox groupBox1;
90    private System.Windows.Forms.BindingSource jsonItemBindingSource;
91    private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn1;
92    private System.Windows.Forms.Button exportButton;
93    private System.Windows.Forms.TableLayoutPanel tabel;
94  }
95}
Note: See TracBrowser for help on using the repository browser.