Rev | Line | |
---|
[1195] | 1 | using System;
|
---|
| 2 | using System.Windows.Forms;
|
---|
| 3 |
|
---|
| 4 | namespace 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.