Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataAnalysisService/HeuristicLab.ExperimentGeneration.DataAnalysis.ExperimentWizard/3.3/ProblemDataViewPage.Designer.cs @ 7912

Last change on this file since 7912 was 7824, checked in by spimming, 12 years ago

#1807:

  • added new wizard pages
  • removed AssemblyInfo files and replaced them with frame file
  • disable buttons when wizardbuttons set to 'none'
  • introduce data analysis context class
File size: 2.7 KB
Line 
1namespace HeuristicLab.ExperimentGeneration.DataAnalysis.ExperimentWizard {
2  partial class ProblemDataViewPage {
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 && (components != null)) {
14        components.Dispose();
15      }
16      base.Dispose(disposing);
17    }
18
19    #region Windows Form Designer generated code
20
21    /// <summary>
22    /// Required method for Designer support - do not modify
23    /// the contents of this method with the code editor.
24    /// </summary>
25    private void InitializeComponent() {
26      this.stringConvertibleMatrixView = new HeuristicLab.Data.Views.StringConvertibleMatrixView();
27      this.SuspendLayout();
28      //
29      // wizardBanner
30      //
31      this.wizardBanner.Size = new System.Drawing.Size(471, 81);
32      //
33      // stringConvertibleMatrixView
34      //
35      this.stringConvertibleMatrixView.Caption = "StringConvertibleMatrix View";
36      this.stringConvertibleMatrixView.Content = null;
37      this.stringConvertibleMatrixView.Dock = System.Windows.Forms.DockStyle.Fill;
38      this.stringConvertibleMatrixView.Location = new System.Drawing.Point(0, 81);
39      this.stringConvertibleMatrixView.Name = "stringConvertibleMatrixView";
40      this.stringConvertibleMatrixView.ReadOnly = false;
41      this.stringConvertibleMatrixView.ShowRowsAndColumnsTextBox = true;
42      this.stringConvertibleMatrixView.ShowStatisticalInformation = true;
43      this.stringConvertibleMatrixView.Size = new System.Drawing.Size(471, 230);
44      this.stringConvertibleMatrixView.TabIndex = 1;
45      //
46      // ProblemDataViewPage
47      //
48      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
49      this.Controls.Add(this.stringConvertibleMatrixView);
50      this.Name = "ProblemDataViewPage";
51      this.Size = new System.Drawing.Size(471, 311);
52      this.SetActive += new System.ComponentModel.CancelEventHandler(this.ProblemDataViewPage_SetActive);
53      this.WizardNext += new HeuristicLab.ExperimentGeneration.DataAnalysis.Wizard.WizardPageEventHandler(this.ProblemDataViewPage_WizardNext);
54      this.Controls.SetChildIndex(this.wizardBanner, 0);
55      this.Controls.SetChildIndex(this.stringConvertibleMatrixView, 0);
56      this.ResumeLayout(false);
57
58    }
59
60    #endregion
61
62    private Data.Views.StringConvertibleMatrixView stringConvertibleMatrixView;
63  }
64}
Note: See TracBrowser for help on using the repository browser.