Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 7967 was 7967, checked in by jkarder, 12 years ago

#1688:

  • removed assignment to Font property in HeuristicLab.MainForm.WindowsForms.DockForm
  • changed AutoScaleMode to be inherited from HeuristicLab.MainForm.WindowsForms.MainForm for all user interface classes
File size: 5.7 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22namespace HeuristicLab.Persistence.GUI {
23  partial class PersistenceConfigurationForm {
24    /// <summary>
25    /// Required designer variable.
26    /// </summary>
27    private System.ComponentModel.IContainer components = null;
28
29    /// <summary>
30    /// Clean up any resources being used.
31    /// </summary>
32    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
33    protected override void Dispose(bool disposing) {
34      if (disposing && (components != null)) {
35        components.Dispose();
36      }
37      base.Dispose(disposing);
38    }
39
40    #region Windows Form Designer generated code
41
42    /// <summary>
43    /// Required method for Designer support - do not modify
44    /// the contents of this method with the code editor.
45    /// </summary>
46    private void InitializeComponent() {
47      this.updateButton = new System.Windows.Forms.Button();
48      this.configurationTabs = new System.Windows.Forms.TabControl();
49      this.buttonPanel = new System.Windows.Forms.TableLayoutPanel();
50      this.resetButton = new System.Windows.Forms.Button();
51      this.buttonPanel.SuspendLayout();
52      this.SuspendLayout();
53      //
54      // updateButton
55      //
56      this.updateButton.Dock = System.Windows.Forms.DockStyle.Fill;
57      this.updateButton.Location = new System.Drawing.Point(296, 6);
58      this.updateButton.Name = "updateButton";
59      this.updateButton.Size = new System.Drawing.Size(282, 25);
60      this.updateButton.TabIndex = 1;
61      this.updateButton.Text = "&Define";
62      this.updateButton.UseVisualStyleBackColor = true;
63      this.updateButton.Click += new System.EventHandler(this.updateButton_Click);
64      //
65      // configurationTabs
66      //
67      this.configurationTabs.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
68                  | System.Windows.Forms.AnchorStyles.Left)
69                  | System.Windows.Forms.AnchorStyles.Right)));
70      this.configurationTabs.Location = new System.Drawing.Point(0, -1);
71      this.configurationTabs.Name = "configurationTabs";
72      this.configurationTabs.SelectedIndex = 0;
73      this.configurationTabs.Size = new System.Drawing.Size(584, 573);
74      this.configurationTabs.TabIndex = 0;
75      //
76      // buttonPanel
77      //
78      this.buttonPanel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
79                  | System.Windows.Forms.AnchorStyles.Right)));
80      this.buttonPanel.AutoSize = true;
81      this.buttonPanel.CausesValidation = false;
82      this.buttonPanel.CellBorderStyle = System.Windows.Forms.TableLayoutPanelCellBorderStyle.InsetDouble;
83      this.buttonPanel.ColumnCount = 2;
84      this.buttonPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
85      this.buttonPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
86      this.buttonPanel.Controls.Add(this.updateButton, 1, 0);
87      this.buttonPanel.Controls.Add(this.resetButton, 0, 0);
88      this.buttonPanel.Location = new System.Drawing.Point(0, 572);
89      this.buttonPanel.Name = "buttonPanel";
90      this.buttonPanel.RowCount = 1;
91      this.buttonPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
92      this.buttonPanel.Size = new System.Drawing.Size(584, 37);
93      this.buttonPanel.TabIndex = 2;
94      //
95      // resetButton
96      //
97      this.resetButton.Dock = System.Windows.Forms.DockStyle.Fill;
98      this.resetButton.Location = new System.Drawing.Point(6, 6);
99      this.resetButton.Name = "resetButton";
100      this.resetButton.Size = new System.Drawing.Size(281, 25);
101      this.resetButton.TabIndex = 2;
102      this.resetButton.Text = "&Reset All";
103      this.resetButton.UseVisualStyleBackColor = true;
104      this.resetButton.Click += new System.EventHandler(this.resetButton_Click);
105      //
106      // PersistenceConfigurationForm
107      //
108      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
109      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
110      this.ClientSize = new System.Drawing.Size(582, 609);
111      this.Controls.Add(this.buttonPanel);
112      this.Controls.Add(this.configurationTabs);
113      this.Icon = HeuristicLab.Common.Resources.HeuristicLab.Icon;
114      this.Name = "PersistenceConfigurationForm";
115      this.Text = "PersistenceConfigurationForm";
116      this.buttonPanel.ResumeLayout(false);
117      this.ResumeLayout(false);
118      this.PerformLayout();
119
120    }
121
122    #endregion
123
124    private System.Windows.Forms.TabControl configurationTabs;
125    private System.Windows.Forms.TableLayoutPanel buttonPanel;
126    private System.Windows.Forms.Button resetButton;
127    private System.Windows.Forms.Button updateButton;
128  }
129}
Note: See TracBrowser for help on using the repository browser.