using System; using System.Windows.Forms; namespace HeuristicLab.DataImporter.DataProcessor { public partial class SaveDialog : Form { public SaveDialog() { InitializeComponent(); } private void btnSave_Click(object sender, EventArgs e) { this.Close(); } private void btnNoSave_Click(object sender, EventArgs e) { this.Close(); } private void btnCancel_Click(object sender, EventArgs e) { this.Close(); } } }