Last change
on this file since 2587 was
2520,
checked in by swagner, 15 years ago
|
Implemented first draft of MainForm support in HeuristicLab.Core/HeuristicLab.Core.Views and all other depending plugins (#770)
|
File size:
1.5 KB
|
Rev | Line | |
---|
[187] | 1 | using System;
|
---|
| 2 | using System.Collections.Generic;
|
---|
| 3 | using System.Data;
|
---|
| 4 | using System.Text;
|
---|
| 5 | using System.Windows.Forms;
|
---|
[2520] | 6 | using HeuristicLab.Core;
|
---|
| 7 | using HeuristicLab.MainForm;
|
---|
[187] | 8 |
|
---|
| 9 | namespace HeuristicLab.Data {
|
---|
[737] | 10 | /// <summary>
|
---|
| 11 | /// A visual representation to visualize a key-value pair.
|
---|
| 12 | /// </summary>
|
---|
[187] | 13 | public partial class EditKeyValueDialog : Form {
|
---|
| 14 | private IItem key;
|
---|
[737] | 15 | /// <summary>
|
---|
| 16 | /// Gets the current key.
|
---|
| 17 | /// </summary>
|
---|
[187] | 18 | public IItem Key {
|
---|
| 19 | get { return key; }
|
---|
| 20 | }
|
---|
| 21 |
|
---|
| 22 | private IItem value;
|
---|
[737] | 23 | /// <summary>
|
---|
| 24 | /// Gets the current value.
|
---|
| 25 | /// </summary>
|
---|
[187] | 26 | public IItem Value {
|
---|
| 27 | get { return value; }
|
---|
| 28 | }
|
---|
| 29 |
|
---|
[737] | 30 | /// <summary>
|
---|
| 31 | /// Initializes a new instance of the class <see cref="EditKeyValueDialog"/> with the given types of
|
---|
| 32 | /// key and value.
|
---|
| 33 | /// </summary>
|
---|
| 34 | /// <param name="keyType">The type of the key.</param>
|
---|
| 35 | /// <param name="valueType">The type of the value.</param>
|
---|
[187] | 36 | public EditKeyValueDialog(Type keyType, Type valueType) {
|
---|
| 37 | InitializeComponent();
|
---|
| 38 | key = (IItem) Activator.CreateInstance(keyType);
|
---|
| 39 | value = (IItem) Activator.CreateInstance(valueType);
|
---|
[2520] | 40 | keyPanel.Controls.Add((Control)MainFormManager.CreateDefaultView(key));
|
---|
| 41 | valuePanel.Controls.Add((Control)MainFormManager.CreateDefaultView(value));
|
---|
[187] | 42 | }
|
---|
| 43 |
|
---|
| 44 | private void okButton_Click(object sender, EventArgs e) {
|
---|
| 45 | this.DialogResult = DialogResult.OK;
|
---|
| 46 | this.Close();
|
---|
| 47 | }
|
---|
| 48 | }
|
---|
| 49 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.