Changeset 8586
- Timestamp:
- 09/06/12 10:22:07 (12 years ago)
- Location:
- branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command
- Files:
-
- 3 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/HeuristicLab.DataImporter.Command.csproj
r7968 r8586 193 193 <DependentUpon>BoxCoxTransformationCommandView.cs</DependentUpon> 194 194 </Compile> 195 <Compile Include="View\DeleteWithThreshold .cs">196 <SubType>UserControl</SubType> 197 </Compile> 198 <Compile Include="View\DeleteWithThreshold .Designer.cs">199 <DependentUpon>DeleteWithThreshold .cs</DependentUpon>195 <Compile Include="View\DeleteWithThresholdView.cs"> 196 <SubType>UserControl</SubType> 197 </Compile> 198 <Compile Include="View\DeleteWithThresholdView.Designer.cs"> 199 <DependentUpon>DeleteWithThresholdView.cs</DependentUpon> 200 200 </Compile> 201 201 <Compile Include="View\FilterSavitzkyGolayCommandView.cs"> -
branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/MissingValues/DeleteColumnsWithMissingValuesThresholdCommand.cs
r7994 r8586 29 29 [StorableClass] 30 30 [ViewableCommandInfoAttribute("Delete Columns beneath Threshold", 1, ColumnGroupState.AnySelectedColumnContainsNull, 31 "Handle Missing Values", Position = 6, OptionsView = typeof(DeleteWithThreshold ))]31 "Handle Missing Values", Position = 6, OptionsView = typeof(DeleteWithThresholdView))] 32 32 public class DeleteColumnsWithMissingValuesThresholdCommand : ColumnGroupCommandWithAffectedColumnsBase, IThresholdCommand { 33 33 private ColumnBase oldColumn; -
branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/MissingValues/DeleteRowsWithMissingValuesThresholdCommand.cs
r7994 r8586 32 32 [StorableClass] 33 33 [ViewableCommandInfoAttribute("Delete Rows beneath Threshold", 1, ColumnGroupState.Active, 34 "Handle Missing Values", Position = 5, OptionsView = typeof(DeleteWithThreshold ))]34 "Handle Missing Values", Position = 5, OptionsView = typeof(DeleteWithThresholdView))] 35 35 public class DeleteRowsWithMissingValuesThresholdCommand : ColumnGroupCommandBase, IThresholdCommand { 36 36 private Dictionary<int, IComparable[]> deletedRows; -
branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/View/DeleteWithThresholdView.Designer.cs
r8584 r8586 1 1 namespace HeuristicLab.DataImporter.Command.View { 2 partial class DeleteWithThreshold {2 partial class DeleteWithThresholdView { 3 3 /// <summary> 4 4 /// Required designer variable. -
branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/View/DeleteWithThresholdView.cs
r8584 r8586 23 23 using System.Windows.Forms; 24 24 using HeuristicLab.DataImporter.Data.CommandBase; 25 25 26 namespace HeuristicLab.DataImporter.Command.View { 26 public partial class DeleteWithThreshold : HeuristicLab.DataImporter.Data.CommandBase.CommandViewBase {27 public DeleteWithThreshold () {27 public partial class DeleteWithThresholdView : CommandViewBase { 28 public DeleteWithThresholdView() { 28 29 InitializeComponent(); 29 30 } 30 31 31 public DeleteWithThreshold (IThresholdCommand command)32 public DeleteWithThresholdView(IThresholdCommand command) 32 33 : this() { 33 34 if (command != null) { … … 44 45 45 46 private double threshold; 46 public double Threshold { get { return Command.Threshold; } }47 47 48 48 private void txtThreshold_Validating(object sender, System.ComponentModel.CancelEventArgs e) {
Note: See TracChangeset
for help on using the changeset viewer.