Last change
on this file since 12940 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
|
Rev | Line | |
---|
[9627] | 1 | using System;
|
---|
| 2 | using System.Windows.Forms;
|
---|
| 3 |
|
---|
| 4 | namespace 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.