Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.MainForm.Test/3.2/FormView2.cs @ 3197

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

first version of redesigned MainForm (ticket #857)

File size: 507 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.ComponentModel;
4using System.Drawing;
5using System.Data;
6using System.Linq;
7using System.Text;
8using HeuristicLab.MainForm.WindowsForms;
9
10namespace HeuristicLab.MainForm.Test {
11  [Content(typeof(ICollection<>),true)]
12  public partial class FormView2<T> : View where T: IMenuItem {
13    public FormView2() {
14      InitializeComponent();
15    }
16    public FormView2(ICollection<T> x) {
17      InitializeComponent();
18    }
19  }
20}
Note: See TracBrowser for help on using the repository browser.