Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 2291 was 2252, checked in by mkommend, 15 years ago

fixed view docking (ticket #716)

File size: 455 bytes
Line 
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;
9
10namespace HeuristicLab.MainForm.Test {
11  public partial class FormView : ViewBase {
12    private int[] array;
13    public FormView() {
14      InitializeComponent();
15    }
16
17    public FormView(IMainForm mainform)
18      : base(mainform) {
19    }
20  }
21}
Note: See TracBrowser for help on using the repository browser.