Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/View/DeleteWithThresholdView.cs @ 8586

Last change on this file since 8586 was 8586, checked in by sforsten, 12 years ago

#1867: renamed view DeleteWithThreshold to DeleteWithThresholdView

File size: 2.1 KB
RevLine 
[7968]1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22using System;
23using System.Windows.Forms;
24using HeuristicLab.DataImporter.Data.CommandBase;
[8586]25
[7968]26namespace HeuristicLab.DataImporter.Command.View {
[8586]27  public partial class DeleteWithThresholdView : CommandViewBase {
28    public DeleteWithThresholdView() {
[7968]29      InitializeComponent();
30    }
31
[8586]32    public DeleteWithThresholdView(IThresholdCommand command)
[7968]33      : this() {
34      if (command != null) {
35        threshold = command.Threshold;
36        txtThreshold.Text = command.Threshold.ToString();
37      }
38      this.Command = command;
39    }
40
41    public new IThresholdCommand Command {
42      get { return (IThresholdCommand)base.Command; }
43      set { base.Command = value; this.UpdateCommand(); }
44    }
45
46    private double threshold;
47
48    private void txtThreshold_Validating(object sender, System.ComponentModel.CancelEventArgs e) {
49      TextBox textBox = (TextBox)sender;
50      e.Cancel = !Double.TryParse(textBox.Text, out threshold);
51      e.Cancel = e.Cancel || threshold < 0.0 || threshold > 1.0;
52      if (e.Cancel) {
53        MessageBox.Show("Threshold has to be between 0.0 and 1.0");
54      } else {
55        UpdateCommand();
56      }
57    }
58
59    private void UpdateCommand() {
60      if (this.Command != null) {
61        Command.Threshold = this.threshold;
62      }
63    }
64  }
65}
Note: See TracBrowser for help on using the repository browser.