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