Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/DataPreprocessingView.Designer.cs @ 10143

Last change on this file since 10143 was 10143, checked in by sbreuer, 10 years ago
  • delete button2
  • remove .resx file and add to ignore list
File size: 2.2 KB
Line 
1namespace HeuristicLab.DataPreprocessing {
2  partial class DataPreprocessingView {
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.label1 = new System.Windows.Forms.Label();
27      this.button1 = new System.Windows.Forms.Button();
28      this.SuspendLayout();
29      //
30      // label1
31      //
32      this.label1.AutoSize = true;
33      this.label1.Location = new System.Drawing.Point(58, 56);
34      this.label1.Name = "label1";
35      this.label1.Size = new System.Drawing.Size(62, 13);
36      this.label1.TabIndex = 0;
37      this.label1.Text = "Hello World";
38      //
39      // button1
40      //
41      this.button1.Location = new System.Drawing.Point(61, 88);
42      this.button1.Name = "button1";
43      this.button1.Size = new System.Drawing.Size(215, 23);
44      this.button1.TabIndex = 1;
45      this.button1.Text = "Write Ones everywhere in DataSet";
46      this.button1.UseVisualStyleBackColor = true;
47      this.button1.Click += new System.EventHandler(this.button1_Click);
48      //
49      // DataPreprocessingView
50      //
51      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
52      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
53      this.Controls.Add(this.button1);
54      this.Controls.Add(this.label1);
55      this.Name = "DataPreprocessingView";
56      this.Size = new System.Drawing.Size(404, 203);
57      this.ResumeLayout(false);
58      this.PerformLayout();
59
60    }
61
62    #endregion
63
64    private System.Windows.Forms.Label label1;
65    private System.Windows.Forms.Button button1;
66  }
67}
Note: See TracBrowser for help on using the repository browser.