Free cookie consent management tool by TermsFeed Policy Generator

source: addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.DataProcessor/SaveDialog.cs @ 17284

Last change on this file since 17284 was 9627, checked in by mkommend, 11 years ago

#1734: Improved data importer usability:

  • new closing message
  • rename column reacts on lost focus
  • updated copyright info
File size: 498 bytes
Line 
1using System;
2using System.Windows.Forms;
3
4namespace HeuristicLab.DataImporter.DataProcessor {
5  public partial class SaveDialog : Form {
6    public SaveDialog() {
7      InitializeComponent();
8    }
9
10    private void btnSave_Click(object sender, EventArgs e) {
11      this.Close();
12    }
13
14    private void btnNoSave_Click(object sender, EventArgs e) {
15      this.Close();
16    }
17
18    private void btnCancel_Click(object sender, EventArgs e) {
19      this.Close();
20    }
21  }
22}
Note: See TracBrowser for help on using the repository browser.