Free cookie consent management tool by TermsFeed Policy Generator

source: branches/CEDMA-Refactoring-Ticket419/HeuristicLab.CEDMA.Core/ResultsViewContainer.Designer.cs @ 1106

Last change on this file since 1106 was 1106, checked in by gkronber, 15 years ago

worked on presentation layer for CEDMA. Added a results view that displays data in a simple DataGrid. (#419)

File size: 3.0 KB
Line 
1namespace HeuristicLab.CEDMA.Core {
2  partial class ResultsViewContainer {
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 Component 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.viewComboBox = new System.Windows.Forms.ComboBox();
27      this.showButton = new System.Windows.Forms.Button();
28      this.viewPanel = new System.Windows.Forms.Panel();
29      this.SuspendLayout();
30      //
31      // viewComboBox
32      //
33      this.viewComboBox.FormattingEnabled = true;
34      this.viewComboBox.Location = new System.Drawing.Point(3, 3);
35      this.viewComboBox.Name = "viewComboBox";
36      this.viewComboBox.Size = new System.Drawing.Size(121, 21);
37      this.viewComboBox.TabIndex = 1;
38      this.viewComboBox.SelectedValueChanged += new System.EventHandler(this.viewComboBox_SelectedValueChanged);
39      //
40      // showButton
41      //
42      this.showButton.Location = new System.Drawing.Point(130, 3);
43      this.showButton.Name = "showButton";
44      this.showButton.Size = new System.Drawing.Size(75, 23);
45      this.showButton.TabIndex = 2;
46      this.showButton.Text = "Show";
47      this.showButton.UseVisualStyleBackColor = true;
48      this.showButton.Click += new System.EventHandler(this.showButton_Click);
49      //
50      // viewPanel
51      //
52      this.viewPanel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
53                  | System.Windows.Forms.AnchorStyles.Left)
54                  | System.Windows.Forms.AnchorStyles.Right)));
55      this.viewPanel.Location = new System.Drawing.Point(4, 32);
56      this.viewPanel.Name = "viewPanel";
57      this.viewPanel.Size = new System.Drawing.Size(443, 424);
58      this.viewPanel.TabIndex = 4;
59      //
60      // ResultsViewContainer
61      //
62      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
63      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
64      this.Controls.Add(this.viewPanel);
65      this.Controls.Add(this.showButton);
66      this.Controls.Add(this.viewComboBox);
67      this.Name = "ResultsViewContainer";
68      this.Size = new System.Drawing.Size(450, 459);
69      this.ResumeLayout(false);
70
71    }
72
73    #endregion
74
75    private System.Windows.Forms.ComboBox viewComboBox;
76    private System.Windows.Forms.Button showButton;
77    private System.Windows.Forms.Panel viewPanel;
78
79  }
80}
Note: See TracBrowser for help on using the repository browser.