Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Visualization/3.2/Options/OptionsDialog.cs @ 1964

Last change on this file since 1964 was 1586, checked in by bspisic, 15 years ago

Changed OptionsDialog to an UserControl (#584)

File size: 495 bytes
RevLine 
[1195]1using System;
2using System.Windows.Forms;
3
4namespace HeuristicLab.Visualization.Options {
5  public partial class OptionsDialog : Form {
[1341]6    public OptionsDialog(IChartDataRowsModel model) {
[1195]7      InitializeComponent();
[1337]8
[1586]9      options.Model = model;
[1195]10    }
11
12    private void OptionsDialogOkButton_Click(object sender, EventArgs e) {
[1237]13      Close();
14    }
[1342]15
[1389]16    private void OptionsDialogResetButton_Click(object sender, EventArgs e) {
[1586]17      options.ResetSettings();
[1389]18    }
[1195]19  }
[1586]20}
Note: See TracBrowser for help on using the repository browser.