Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.MainForm.Test/3.2/FormView.cs @ 2458

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

integrated branch MainForm refactoring into trunk (ticket #771)

File size: 490 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  [DefaultViewAttribute]
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.