Changeset 10930 for branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.4/SearchAndReplaceDialog.cs
- Timestamp:
- 06/04/14 10:51:34 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.4/SearchAndReplaceDialog.cs
r10870 r10930 1 1 using System; 2 using System.Collections.Generic;3 2 using System.Windows.Forms; 4 3 … … 22 21 } 23 22 23 24 24 25 public partial class SearchAndReplaceDialog : Form { 25 26 private string[] cmbItemsText = { "Value", "Average", "Median", "Random", "Most Common", "Interpolation" }; … … 42 43 tabSearchReplace.SelectTab(tabReplace); 43 44 AddControlsToCurrentTab(); 45 } 46 47 public void DisableReplace() { 48 tabSearchReplace.SelectTab(tabSearch); 49 tabReplace.Enabled = false; 50 } 51 52 public void EnableReplace() { 53 tabReplace.Enabled = true; 44 54 } 45 55 … … 97 107 remove { btnReplace.Click -= value; } 98 108 } 99 100 109 } 101 110 }
Note: See TracChangeset
for help on using the changeset viewer.