1 | namespace HeuristicLab.Problems.Instances.DataAnalysis.Views {
|
---|
2 | partial class DataAnalysisImportTypeDialog {
|
---|
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.ShuffelDataCheckbox = new System.Windows.Forms.CheckBox();
|
---|
27 | this.OkButton = new System.Windows.Forms.Button();
|
---|
28 | this.CancelButton = new System.Windows.Forms.Button();
|
---|
29 | this.SuspendLayout();
|
---|
30 | //
|
---|
31 | // ShuffelDataCheckbox
|
---|
32 | //
|
---|
33 | this.ShuffelDataCheckbox.AutoSize = true;
|
---|
34 | this.ShuffelDataCheckbox.Location = new System.Drawing.Point(61, 12);
|
---|
35 | this.ShuffelDataCheckbox.Name = "ShuffelDataCheckbox";
|
---|
36 | this.ShuffelDataCheckbox.Size = new System.Drawing.Size(91, 17);
|
---|
37 | this.ShuffelDataCheckbox.TabIndex = 1;
|
---|
38 | this.ShuffelDataCheckbox.Text = "Shuffel Data?";
|
---|
39 | this.ShuffelDataCheckbox.UseVisualStyleBackColor = true;
|
---|
40 | //
|
---|
41 | // OkButton
|
---|
42 | //
|
---|
43 | this.OkButton.DialogResult = System.Windows.Forms.DialogResult.OK;
|
---|
44 | this.OkButton.Location = new System.Drawing.Point(12, 35);
|
---|
45 | this.OkButton.Name = "OkButton";
|
---|
46 | this.OkButton.Size = new System.Drawing.Size(75, 23);
|
---|
47 | this.OkButton.TabIndex = 2;
|
---|
48 | this.OkButton.Text = "&Ok";
|
---|
49 | this.OkButton.UseVisualStyleBackColor = true;
|
---|
50 | //
|
---|
51 | // CancelButton
|
---|
52 | //
|
---|
53 | this.CancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
---|
54 | this.CancelButton.Location = new System.Drawing.Point(115, 35);
|
---|
55 | this.CancelButton.Name = "CancelButton";
|
---|
56 | this.CancelButton.Size = new System.Drawing.Size(75, 23);
|
---|
57 | this.CancelButton.TabIndex = 3;
|
---|
58 | this.CancelButton.Text = "&Cancel";
|
---|
59 | this.CancelButton.UseVisualStyleBackColor = true;
|
---|
60 | //
|
---|
61 | // DataAnalysisImportTypeDialog
|
---|
62 | //
|
---|
63 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
64 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
65 | this.ClientSize = new System.Drawing.Size(202, 69);
|
---|
66 | this.Controls.Add(this.CancelButton);
|
---|
67 | this.Controls.Add(this.OkButton);
|
---|
68 | this.Controls.Add(this.ShuffelDataCheckbox);
|
---|
69 | this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
|
---|
70 | this.Name = "DataAnalysisImportTypeDialog";
|
---|
71 | this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
---|
72 | this.Text = "DataAnalysisImportTypeDialog";
|
---|
73 | this.ResumeLayout(false);
|
---|
74 | this.PerformLayout();
|
---|
75 | }
|
---|
76 |
|
---|
77 | #endregion
|
---|
78 |
|
---|
79 | protected System.Windows.Forms.CheckBox ShuffelDataCheckbox;
|
---|
80 | protected System.Windows.Forms.Button OkButton;
|
---|
81 | protected System.Windows.Forms.Button CancelButton;
|
---|
82 |
|
---|
83 | }
|
---|
84 | } |
---|