Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Data/View/DataSetView.Designer.cs @ 6133

Last change on this file since 6133 was 6133, checked in by gkronber, 13 years ago

#1471: imported generic parts of DataImporter from private code base

File size: 1.5 KB
Line 
1namespace HeuristicLab.DataImporter.Data.View {
2  partial class DataSetView {
3    /// <summary>
4    /// Required designer variable.
5    /// </summary>
6    private System.ComponentModel.IContainer components = null;
7
8    /// <summary>
9    /// Clean up any resources being used.
10    /// </summary>
11    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
12    protected override void Dispose(bool disposing) {
13      if (disposing ) {
14        if(components!=null)
15          components.Dispose();
16
17        StateChanged = null;
18        DataSet.Changed -= DataSetChanged;
19
20        //clean up - caution: view.dispose removes disposed view from controls
21        for (int i = 0, backupCount = this.Controls.Count; i < backupCount; i++)
22          this.Controls[0].Dispose();
23      }
24      base.Dispose(disposing);
25      System.GC.Collect();
26    }
27
28    #region Component Designer generated code
29
30    /// <summary>
31    /// Required method for Designer support - do not modify
32    /// the contents of this method with the code editor.
33    /// </summary>
34    private void InitializeComponent() {
35      this.SuspendLayout();
36      //
37      // DataSetView
38      //
39      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
40      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
41      this.Name = "DataSetView";
42      this.Size = new System.Drawing.Size(305, 186);
43      this.ResumeLayout(false);
44
45    }
46
47    #endregion
48
49
50
51  }
52}
Note: See TracBrowser for help on using the repository browser.