Free cookie consent management tool by TermsFeed Policy Generator

source: branches/Mainform refactoring/HeuristicLab.MainForm.Test/3.2/FormView.cs @ 2443

Last change on this file since 2443 was 2443, checked in by mkommend, 14 years ago

refactored mainform (ticket #771)

File size: 481 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.ComponentModel;
4using System.Drawing;
5using System.Data;
6using System.Linq;
7using System.Text;
8using System.Windows.Forms;
9using HeuristicLab.MainForm.WindowsForms;
10using System.Collections;
11
12namespace HeuristicLab.MainForm.Test {
13  [DefaultView]
14  public partial class FormView1 : ViewBase<ICollection> {
15    private int[] array;
16    public FormView1() {
17      InitializeComponent();
18    }
19  }
20}
Note: See TracBrowser for help on using the repository browser.