Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/20/09 15:21:05 (15 years ago)
Author:
epitzer
Message:

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Persistence.GUI/3.3/PersistenceConfigurationForm.Designer.cs

    r1530 r1611  
    2424    /// </summary>
    2525    private void InitializeComponent() {
    26       System.Windows.Forms.Button updateButton;
     26      this.updateButton = new System.Windows.Forms.Button();
    2727      this.configurationTabs = new System.Windows.Forms.TabControl();
    28       updateButton = new System.Windows.Forms.Button();
     28      this.buttonPanel = new System.Windows.Forms.TableLayoutPanel();
     29      this.resetButton = new System.Windows.Forms.Button();
     30      this.buttonPanel.SuspendLayout();
    2931      this.SuspendLayout();
    3032      //
    3133      // updateButton
    3234      //
    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);
     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);
    4143      //
    4244      // configurationTabs
    4345      //
    44       this.configurationTabs.Dock = System.Windows.Forms.DockStyle.Fill;
    45       this.configurationTabs.Location = new System.Drawing.Point(0, 0);
     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);
    4650      this.configurationTabs.Name = "configurationTabs";
    4751      this.configurationTabs.SelectedIndex = 0;
    48       this.configurationTabs.Size = new System.Drawing.Size(597, 580);
     52      this.configurationTabs.Size = new System.Drawing.Size(584, 573);
    4953      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);
    5084      //
    5185      // PersistenceConfigurationForm
     
    5387      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
    5488      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
    55       this.ClientSize = new System.Drawing.Size(597, 580);
    56       this.Controls.Add(updateButton);
     89      this.ClientSize = new System.Drawing.Size(582, 609);
     90      this.Controls.Add(this.buttonPanel);
    5791      this.Controls.Add(this.configurationTabs);
    5892      this.Name = "PersistenceConfigurationForm";
    59       this.Text = "PersistenceConfigurationForm";     
     93      this.Text = "PersistenceConfigurationForm";
     94      this.buttonPanel.ResumeLayout(false);
    6095      this.ResumeLayout(false);
     96      this.PerformLayout();
    6197
    6298    }
     
    65101
    66102    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;
    67106  }
    68107}
Note: See TracChangeset for help on using the changeset viewer.