Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 3043 was 2696, checked in by mkommend, 15 years ago

first version of redesigned MainForm (ticket #857)

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