Last change
on this file since 3491 was
2706,
checked in by mkommend, 15 years ago
|
fixed compilation errors in HL3.2 solution (ticket #857)
|
File size:
580 bytes
|
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 System.Windows.Forms;
|
---|
9 | using HeuristicLab.MainForm.WindowsForms;
|
---|
10 | using System.Collections;
|
---|
11 |
|
---|
12 | namespace HeuristicLab.MainForm.Test {
|
---|
13 | [Content(typeof(List<string>), true)]
|
---|
14 | public partial class FormView1 : FormView2<HeuristicLab.MainForm.WindowsForms.MenuItem> {
|
---|
15 | public FormView1() {
|
---|
16 | InitializeComponent();
|
---|
17 | }
|
---|
18 |
|
---|
19 | public FormView1(List<string> list)
|
---|
20 | : this() {
|
---|
21 | }
|
---|
22 | }
|
---|
23 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.