Free cookie consent management tool by TermsFeed Policy Generator

source: branches/New Persistence Exploration/Persistence/HeuristicLab.Persistence.GUI/PersistenceConfigurationForm.Designer.cs @ 1414

Last change on this file since 1414 was 1414, checked in by epitzer, 15 years ago

Include decomposer configuration in dynamically created tab pages for every persistence configuration. (#506)

File size: 2.5 KB
Line 
1namespace HeuristicLab.Persistence.GUI {
2  partial class PersistenceConfigurationForm {
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      System.Windows.Forms.Button updateButton;
27      this.configurationTabs = new System.Windows.Forms.TabControl();
28      updateButton = new System.Windows.Forms.Button();
29      this.SuspendLayout();
30      //
31      // updateButton
32      //
33      updateButton.Dock = System.Windows.Forms.DockStyle.Bottom;
34      updateButton.Location = new System.Drawing.Point(0, 555);
35      updateButton.Name = "updateButton";
36      updateButton.Size = new System.Drawing.Size(597, 25);
37      updateButton.TabIndex = 1;
38      updateButton.Text = "Define Configuration";
39      updateButton.UseVisualStyleBackColor = true;
40      updateButton.Click += new System.EventHandler(this.updateButton_Click);
41      //
42      // configurationTabs
43      //
44      this.configurationTabs.Dock = System.Windows.Forms.DockStyle.Fill;
45      this.configurationTabs.Location = new System.Drawing.Point(0, 0);
46      this.configurationTabs.Name = "configurationTabs";
47      this.configurationTabs.SelectedIndex = 0;
48      this.configurationTabs.Size = new System.Drawing.Size(597, 580);
49      this.configurationTabs.TabIndex = 0;
50      //
51      // PersistenceConfigurationForm
52      //
53      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
54      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
55      this.ClientSize = new System.Drawing.Size(597, 580);
56      this.Controls.Add(updateButton);
57      this.Controls.Add(this.configurationTabs);
58      this.Name = "PersistenceConfigurationForm";
59      this.Text = "PersistenceConfigurationForm";     
60      this.ResumeLayout(false);
61
62    }
63
64    #endregion
65
66    private System.Windows.Forms.TabControl configurationTabs;
67  }
68}
Note: See TracBrowser for help on using the repository browser.