Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.ComponentModel;
|
---|
4 | using System.Drawing;
|
---|
5 | using System.Data;
|
---|
6 | using System.Linq;
|
---|
7 | using System.Text;
|
---|
8 | using HeuristicLab.MainForm.WindowsForms;
|
---|
9 |
|
---|
10 | namespace 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.