Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Optimizer/3.3/NewDialog.cs @ 2520

Last change on this file since 2520 was 2520, checked in by swagner, 14 years ago

Implemented first draft of MainForm support in HeuristicLab.Core/HeuristicLab.Core.Views and all other depending plugins (#770)

File size: 480 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.ComponentModel;
4using System.Data;
5using System.Drawing;
6using System.Linq;
7using System.Text;
8using System.Windows.Forms;
9
10namespace HeuristicLab.Optimizer {
11  public partial class NewDialog : Form {
12    private Type newItemType;
13    public Type NewItemType {
14      get { return newItemType; }
15    }
16
17    public NewDialog() {
18      InitializeComponent();
19      newItemType = null;
20    }
21  }
22}
Note: See TracBrowser for help on using the repository browser.