Changeset 10786 for branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/TransformationView.Designer.cs
- Timestamp:
- 04/23/14 15:56:31 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/TransformationView.Designer.cs
r10778 r10786 47 47 /// </summary> 48 48 private void InitializeComponent() { 49 components = new System.ComponentModel.Container(); 50 this.transformationCollectionView = new CheckedTransformationCollectionView(); 49 this.transformationCollectionView = new HeuristicLab.DataPreprocessing.Views.CheckedTransformationCollectionView(); 50 this.applyButton = new System.Windows.Forms.Button(); 51 this.SuspendLayout(); 52 // 51 53 // transformationCollectionView 52 54 // 55 this.transformationCollectionView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 56 | System.Windows.Forms.AnchorStyles.Left) 57 | System.Windows.Forms.AnchorStyles.Right))); 53 58 this.transformationCollectionView.Caption = "Transformations"; 54 59 this.transformationCollectionView.Content = null; 55 this.transformationCollectionView.Dock = System.Windows.Forms.DockStyle.Fill;56 60 this.transformationCollectionView.Location = new System.Drawing.Point(0, 0); 57 61 this.transformationCollectionView.Name = "transformationCollectionView"; 58 this.transformationCollectionView.Size = new System.Drawing.Size(627, 528); 62 this.transformationCollectionView.ReadOnly = false; 63 this.transformationCollectionView.ShowDetails = true; 64 this.transformationCollectionView.Size = new System.Drawing.Size(627, 482); 59 65 this.transformationCollectionView.TabIndex = 0; 66 // 67 // applyButton 68 // 69 this.applyButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); 70 this.applyButton.Location = new System.Drawing.Point(490, 488); 71 this.applyButton.Name = "applyButton"; 72 this.applyButton.Size = new System.Drawing.Size(134, 23); 73 this.applyButton.TabIndex = 1; 74 this.applyButton.Text = "Apply Transformations"; 75 this.applyButton.UseVisualStyleBackColor = true; 76 this.applyButton.Click += new System.EventHandler(this.applyButton_Click); 60 77 // 61 78 // TransformationView … … 63 80 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 64 81 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 82 this.Controls.Add(this.applyButton); 65 83 this.Controls.Add(this.transformationCollectionView); 66 84 this.Name = "TransformationView"; 67 this.Size = new System.Drawing.Size(627, 5 28);85 this.Size = new System.Drawing.Size(627, 514); 68 86 this.ResumeLayout(false); 69 87 … … 72 90 #endregion 73 91 private CheckedTransformationCollectionView transformationCollectionView; 92 private System.Windows.Forms.Button applyButton; 74 93 } 75 94 }
Note: See TracChangeset
for help on using the changeset viewer.