Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.MainForm.Test/3.2/FormView.cs @ 2820

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
RevLine 
[2250]1using System;
2using System.Collections.Generic;
3using System.ComponentModel;
4using System.Drawing;
5using System.Data;
6using System.Linq;
7using System.Text;
8using System.Windows.Forms;
[2458]9using HeuristicLab.MainForm.WindowsForms;
10using System.Collections;
[2250]11
12namespace 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.