Free cookie consent management tool by TermsFeed Policy Generator

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

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

#3026:

  • added a new way to setup the targeted result types
  • added new ui controls: NumericRangeControl, JsonItemArrayControl, JsonItemDefaultControl
  • redesigned export dialog -> now the user can navigate with a tree view
  • enhanced JsonItemVM
File size: 5.4 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.treeView = new System.Windows.Forms.TreeView();
30      this.groupBoxDetails = new System.Windows.Forms.GroupBox();
31      this.panel = new System.Windows.Forms.Panel();
32      this.jsonItemBindingSource = new System.Windows.Forms.BindingSource(this.components);
33      this.groupBoxDetails.SuspendLayout();
34      ((System.ComponentModel.ISupportInitialize)(this.jsonItemBindingSource)).BeginInit();
35      this.SuspendLayout();
36      //
37      // dataGridViewTextBoxColumn1
38      //
39      this.dataGridViewTextBoxColumn1.DataPropertyName = "Value";
40      this.dataGridViewTextBoxColumn1.HeaderText = "Value";
41      this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
42      //
43      // exportButton
44      //
45      this.exportButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
46      this.exportButton.Location = new System.Drawing.Point(801, 687);
47      this.exportButton.Name = "exportButton";
48      this.exportButton.Size = new System.Drawing.Size(121, 34);
49      this.exportButton.TabIndex = 1;
50      this.exportButton.Text = "Export";
51      this.exportButton.UseVisualStyleBackColor = true;
52      this.exportButton.Click += new System.EventHandler(this.exportButton_Click);
53      //
54      // treeView
55      //
56      this.treeView.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
57            | System.Windows.Forms.AnchorStyles.Left)));
58      this.treeView.Location = new System.Drawing.Point(12, 12);
59      this.treeView.Name = "treeView";
60      this.treeView.Size = new System.Drawing.Size(342, 669);
61      this.treeView.TabIndex = 3;
62      this.treeView.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeView_AfterSelect);
63      //
64      // groupBoxDetails
65      //
66      this.groupBoxDetails.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
67            | System.Windows.Forms.AnchorStyles.Left)
68            | System.Windows.Forms.AnchorStyles.Right)));
69      this.groupBoxDetails.Controls.Add(this.panel);
70      this.groupBoxDetails.Location = new System.Drawing.Point(360, 12);
71      this.groupBoxDetails.Name = "groupBoxDetails";
72      this.groupBoxDetails.Size = new System.Drawing.Size(562, 669);
73      this.groupBoxDetails.TabIndex = 4;
74      this.groupBoxDetails.TabStop = false;
75      this.groupBoxDetails.Text = "Details";
76      //
77      // panel
78      //
79      this.panel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
80            | System.Windows.Forms.AnchorStyles.Left)
81            | System.Windows.Forms.AnchorStyles.Right)));
82      this.panel.AutoScroll = true;
83      this.panel.Location = new System.Drawing.Point(7, 20);
84      this.panel.Name = "panel";
85      this.panel.Size = new System.Drawing.Size(549, 643);
86      this.panel.TabIndex = 0;
87      //
88      // jsonItemBindingSource
89      //
90      this.jsonItemBindingSource.DataSource = typeof(HeuristicLab.JsonInterface.JsonItem);
91      //
92      // ExportJsonDialog
93      //
94      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
95      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
96      this.ClientSize = new System.Drawing.Size(934, 733);
97      this.Controls.Add(this.groupBoxDetails);
98      this.Controls.Add(this.treeView);
99      this.Controls.Add(this.exportButton);
100      this.Name = "ExportJsonDialog";
101      this.RightToLeft = System.Windows.Forms.RightToLeft.No;
102      this.ShowIcon = false;
103      this.Text = "Export Json";
104      this.groupBoxDetails.ResumeLayout(false);
105      ((System.ComponentModel.ISupportInitialize)(this.jsonItemBindingSource)).EndInit();
106      this.ResumeLayout(false);
107
108    }
109
110    #endregion
111
112    private System.Windows.Forms.GroupBox groupBox1;
113    private System.Windows.Forms.BindingSource jsonItemBindingSource;
114    private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn1;
115    private System.Windows.Forms.Button exportButton;
116    private System.Windows.Forms.TreeView treeView;
117    private System.Windows.Forms.GroupBox groupBoxDetails;
118    private System.Windows.Forms.Panel panel;
119  }
120}
Note: See TracBrowser for help on using the repository browser.