- Timestamp:
- 09/06/12 10:22:07 (12 years ago)
- Location:
- branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/View
- Files:
-
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
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.