- Timestamp:
- 01/08/14 16:44:47 (11 years ago)
- Location:
- branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Views
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Views/DataGridContentView.Designer.cs
r10253 r10317 30 30 // rowsTextBox 31 31 // 32 this.rowsTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left))); 33 this.rowsTextBox.Enabled = false; 32 34 this.errorProvider.SetIconAlignment(this.rowsTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft); 33 35 this.errorProvider.SetIconPadding(this.rowsTextBox, 2); 34 36 this.rowsTextBox.ReadOnly = true; 35 this.rowsTextBox.Size = new System.Drawing.Size( 296, 20);37 this.rowsTextBox.Size = new System.Drawing.Size(71, 20); 36 38 // 37 39 // columnsTextBox 38 40 // 41 this.columnsTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left))); 42 this.columnsTextBox.Enabled = false; 39 43 this.columnsTextBox.ReadOnly = true; 40 this.columnsTextBox.Size = new System.Drawing.Size( 296, 20);44 this.columnsTextBox.Size = new System.Drawing.Size(71, 20); 41 45 // 42 46 // statisticsTextBox … … 46 50 // btnApplySort 47 51 // 48 this.btnApplySort.Location = new System.Drawing.Point( 398, 18);52 this.btnApplySort.Location = new System.Drawing.Point(241, 19); 49 53 this.btnApplySort.Name = "btnApplySort"; 50 54 this.btnApplySort.Size = new System.Drawing.Size(75, 23); -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Views/DataGridContentView.cs
r10311 r10317 36 36 } 37 37 38 protected override void SetEnabledStateOfControls() { 39 base.SetEnabledStateOfControls(); 40 rowsTextBox.ReadOnly = true; 41 columnsTextBox.ReadOnly = true; 42 } 43 38 44 private void btnApplySort_Click(object sender, System.EventArgs e) { 39 45 Content.PreprocessingDataManipulation.reOrderToIndices(virtualRowIndices); 46 OnContentChanged(); 40 47 } 41 48 }
Note: See TracChangeset
for help on using the changeset viewer.