Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Persistence.GUI/3.3/PersistenceConfigurationForm.Designer.cs @ 1611

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

Reset/Re-initialize persistence configuration within GUI. (#548)

File size: 4.8 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      this.updateButton = new System.Windows.Forms.Button();
27      this.configurationTabs = new System.Windows.Forms.TabControl();
28      this.buttonPanel = new System.Windows.Forms.TableLayoutPanel();
29      this.resetButton = new System.Windows.Forms.Button();
30      this.buttonPanel.SuspendLayout();
31      this.SuspendLayout();
32      //
33      // updateButton
34      //
35      this.updateButton.Dock = System.Windows.Forms.DockStyle.Fill;
36      this.updateButton.Location = new System.Drawing.Point(296, 6);
37      this.updateButton.Name = "updateButton";
38      this.updateButton.Size = new System.Drawing.Size(282, 25);
39      this.updateButton.TabIndex = 1;
40      this.updateButton.Text = "&Define";
41      this.updateButton.UseVisualStyleBackColor = true;
42      this.updateButton.Click += new System.EventHandler(this.updateButton_Click);
43      //
44      // configurationTabs
45      //
46      this.configurationTabs.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
47                  | System.Windows.Forms.AnchorStyles.Left)
48                  | System.Windows.Forms.AnchorStyles.Right)));
49      this.configurationTabs.Location = new System.Drawing.Point(0, -1);
50      this.configurationTabs.Name = "configurationTabs";
51      this.configurationTabs.SelectedIndex = 0;
52      this.configurationTabs.Size = new System.Drawing.Size(584, 573);
53      this.configurationTabs.TabIndex = 0;
54      //
55      // buttonPanel
56      //
57      this.buttonPanel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
58                  | System.Windows.Forms.AnchorStyles.Right)));
59      this.buttonPanel.AutoSize = true;
60      this.buttonPanel.CausesValidation = false;
61      this.buttonPanel.CellBorderStyle = System.Windows.Forms.TableLayoutPanelCellBorderStyle.InsetDouble;
62      this.buttonPanel.ColumnCount = 2;
63      this.buttonPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
64      this.buttonPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
65      this.buttonPanel.Controls.Add(this.updateButton, 1, 0);
66      this.buttonPanel.Controls.Add(this.resetButton, 0, 0);
67      this.buttonPanel.Location = new System.Drawing.Point(0, 572);
68      this.buttonPanel.Name = "buttonPanel";
69      this.buttonPanel.RowCount = 1;
70      this.buttonPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
71      this.buttonPanel.Size = new System.Drawing.Size(584, 37);
72      this.buttonPanel.TabIndex = 2;
73      //
74      // resetButton
75      //
76      this.resetButton.Dock = System.Windows.Forms.DockStyle.Fill;
77      this.resetButton.Location = new System.Drawing.Point(6, 6);
78      this.resetButton.Name = "resetButton";
79      this.resetButton.Size = new System.Drawing.Size(281, 25);
80      this.resetButton.TabIndex = 2;
81      this.resetButton.Text = "&Reset All";
82      this.resetButton.UseVisualStyleBackColor = true;
83      this.resetButton.Click += new System.EventHandler(this.resetButton_Click);
84      //
85      // PersistenceConfigurationForm
86      //
87      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
88      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
89      this.ClientSize = new System.Drawing.Size(582, 609);
90      this.Controls.Add(this.buttonPanel);
91      this.Controls.Add(this.configurationTabs);
92      this.Name = "PersistenceConfigurationForm";
93      this.Text = "PersistenceConfigurationForm";
94      this.buttonPanel.ResumeLayout(false);
95      this.ResumeLayout(false);
96      this.PerformLayout();
97
98    }
99
100    #endregion
101
102    private System.Windows.Forms.TabControl configurationTabs;
103    private System.Windows.Forms.TableLayoutPanel buttonPanel;
104    private System.Windows.Forms.Button resetButton;
105    private System.Windows.Forms.Button updateButton;
106  }
107}
Note: See TracBrowser for help on using the repository browser.