Configurator/UI/Wizards/Wizard.Designer.cs (206 lines of code) (raw):
/* Copyright (c) 2023, 2024, Oracle and/or its affiliates.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 2.0, as
published by the Free Software Foundation.
This program is designed to work with certain software (including
but not limited to OpenSSL) that is licensed under separate terms, as
designated in a particular file or component or in included license
documentation. The authors of MySQL hereby grant you an additional
permission to link the program and your derivative works with the
separately licensed software that they have either included with
the program or referenced in the documentation.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU General Public License, version 2.0, for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
using MySql.Configurator.UI.Controls;
namespace MySql.Configurator.UI.Wizards
{
partial class Wizard
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
Pages.ForEach(p => p.UnsubscribeEvents());
base.Dispose(disposing);
}
#region Component Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.WizardBackButton = new System.Windows.Forms.Button();
this.WizardCancelButton = new System.Windows.Forms.Button();
this.WizardNextButton = new System.Windows.Forms.Button();
this.FooterAreaFlowLayoutPanel = new System.Windows.Forms.FlowLayoutPanel();
this.WizardHelpButton = new System.Windows.Forms.Button();
this.WizardFinishButton = new System.Windows.Forms.Button();
this.WizardExecuteButton = new System.Windows.Forms.Button();
this.SeparatorLinePanel = new System.Windows.Forms.Panel();
this.AboutButton = new System.Windows.Forms.Button();
this.MySQLConfiguratorLabel = new System.Windows.Forms.Label();
this.WizardSideBar = new MySql.Configurator.UI.Controls.InstallWizardSideBarControl();
this.FooterAreaFlowLayoutPanel.SuspendLayout();
this.SuspendLayout();
//
// WizardBackButton
//
this.WizardBackButton.AccessibleDescription = "A button to navigate to the previous wizard page";
this.WizardBackButton.AccessibleName = "Back";
this.WizardBackButton.BackColor = System.Drawing.SystemColors.Control;
this.WizardBackButton.FlatAppearance.BorderColor = System.Drawing.SystemColors.ControlDark;
this.WizardBackButton.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.WizardBackButton.ImeMode = System.Windows.Forms.ImeMode.NoControl;
this.WizardBackButton.Location = new System.Drawing.Point(7, 11);
this.WizardBackButton.Name = "WizardBackButton";
this.WizardBackButton.Size = new System.Drawing.Size(86, 26);
this.WizardBackButton.TabIndex = 0;
this.WizardBackButton.Text = global::MySql.Configurator.Properties.Resources.BackButtonDefaultText;
this.WizardBackButton.UseVisualStyleBackColor = false;
this.WizardBackButton.Click += new System.EventHandler(this.WizardBackButton_Click);
//
// WizardCancelButton
//
this.WizardCancelButton.AccessibleDescription = "A button to cancel the wizard";
this.WizardCancelButton.AccessibleName = "Cancel";
this.WizardCancelButton.BackColor = System.Drawing.SystemColors.Control;
this.WizardCancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.WizardCancelButton.FlatAppearance.BorderColor = System.Drawing.SystemColors.ControlDark;
this.WizardCancelButton.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.WizardCancelButton.ImeMode = System.Windows.Forms.ImeMode.NoControl;
this.WizardCancelButton.Location = new System.Drawing.Point(375, 11);
this.WizardCancelButton.Name = "WizardCancelButton";
this.WizardCancelButton.Size = new System.Drawing.Size(86, 26);
this.WizardCancelButton.TabIndex = 4;
this.WizardCancelButton.Text = global::MySql.Configurator.Properties.Resources.CancelButtonDefaultText;
this.WizardCancelButton.UseVisualStyleBackColor = false;
this.WizardCancelButton.Click += new System.EventHandler(this.WizardCancelButton_Click);
//
// WizardNextButton
//
this.WizardNextButton.AccessibleDescription = "A button to navigate to the next wizard page";
this.WizardNextButton.AccessibleName = "Next";
this.WizardNextButton.BackColor = System.Drawing.SystemColors.Control;
this.WizardNextButton.FlatAppearance.BorderColor = System.Drawing.SystemColors.ControlDark;
this.WizardNextButton.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.WizardNextButton.ImeMode = System.Windows.Forms.ImeMode.NoControl;
this.WizardNextButton.Location = new System.Drawing.Point(191, 11);
this.WizardNextButton.Name = "WizardNextButton";
this.WizardNextButton.Size = new System.Drawing.Size(86, 26);
this.WizardNextButton.TabIndex = 2;
this.WizardNextButton.Text = global::MySql.Configurator.Properties.Resources.NextButtonDefaultText;
this.WizardNextButton.UseVisualStyleBackColor = false;
this.WizardNextButton.Click += new System.EventHandler(this.WizardNextButton_Click);
//
// FooterAreaFlowLayoutPanel
//
this.FooterAreaFlowLayoutPanel.AccessibleDescription = "A panel in the lower section of a wizard denoting a footer area";
this.FooterAreaFlowLayoutPanel.AccessibleName = "Footer Area";
this.FooterAreaFlowLayoutPanel.BackColor = System.Drawing.SystemColors.Control;
this.FooterAreaFlowLayoutPanel.Controls.Add(this.WizardHelpButton);
this.FooterAreaFlowLayoutPanel.Controls.Add(this.WizardCancelButton);
this.FooterAreaFlowLayoutPanel.Controls.Add(this.WizardFinishButton);
this.FooterAreaFlowLayoutPanel.Controls.Add(this.WizardNextButton);
this.FooterAreaFlowLayoutPanel.Controls.Add(this.WizardExecuteButton);
this.FooterAreaFlowLayoutPanel.Controls.Add(this.WizardBackButton);
this.FooterAreaFlowLayoutPanel.Dock = System.Windows.Forms.DockStyle.Bottom;
this.FooterAreaFlowLayoutPanel.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
this.FooterAreaFlowLayoutPanel.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.FooterAreaFlowLayoutPanel.Location = new System.Drawing.Point(220, 513);
this.FooterAreaFlowLayoutPanel.Name = "FooterAreaFlowLayoutPanel";
this.FooterAreaFlowLayoutPanel.Padding = new System.Windows.Forms.Padding(0, 8, 8, 0);
this.FooterAreaFlowLayoutPanel.Size = new System.Drawing.Size(564, 49);
this.FooterAreaFlowLayoutPanel.TabIndex = 2;
this.FooterAreaFlowLayoutPanel.WrapContents = false;
//
// WizardHelpButton
//
this.WizardHelpButton.AccessibleDescription = "A button to show contextual help about the current wizard page";
this.WizardHelpButton.AccessibleName = "Help";
this.WizardHelpButton.BackColor = System.Drawing.SystemColors.Control;
this.WizardHelpButton.FlatAppearance.BorderColor = System.Drawing.SystemColors.ControlDark;
this.WizardHelpButton.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.WizardHelpButton.ImeMode = System.Windows.Forms.ImeMode.NoControl;
this.WizardHelpButton.Location = new System.Drawing.Point(467, 11);
this.WizardHelpButton.Name = "WizardHelpButton";
this.WizardHelpButton.Size = new System.Drawing.Size(86, 26);
this.WizardHelpButton.TabIndex = 5;
this.WizardHelpButton.Text = "&Help";
this.WizardHelpButton.UseVisualStyleBackColor = false;
this.WizardHelpButton.Visible = false;
this.WizardHelpButton.Click += new System.EventHandler(this.WizardHelpButton_Click);
//
// WizardFinishButton
//
this.WizardFinishButton.AccessibleDescription = "A button to close the wizard after it has finished all operations";
this.WizardFinishButton.AccessibleName = "Finish";
this.WizardFinishButton.BackColor = System.Drawing.SystemColors.Control;
this.WizardFinishButton.FlatAppearance.BorderColor = System.Drawing.SystemColors.ControlDark;
this.WizardFinishButton.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.WizardFinishButton.ImeMode = System.Windows.Forms.ImeMode.NoControl;
this.WizardFinishButton.Location = new System.Drawing.Point(283, 11);
this.WizardFinishButton.Name = "WizardFinishButton";
this.WizardFinishButton.Size = new System.Drawing.Size(86, 26);
this.WizardFinishButton.TabIndex = 3;
this.WizardFinishButton.Text = "&Finish";
this.WizardFinishButton.UseVisualStyleBackColor = false;
this.WizardFinishButton.Click += new System.EventHandler(this.WizardFinishButton_Click);
//
// WizardExecuteButton
//
this.WizardExecuteButton.AccessibleDescription = "A button to execute the wizard operation";
this.WizardExecuteButton.AccessibleName = "Execute";
this.WizardExecuteButton.BackColor = System.Drawing.SystemColors.Control;
this.WizardExecuteButton.FlatAppearance.BorderColor = System.Drawing.SystemColors.ControlDark;
this.WizardExecuteButton.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.WizardExecuteButton.Location = new System.Drawing.Point(99, 11);
this.WizardExecuteButton.Name = "WizardExecuteButton";
this.WizardExecuteButton.Size = new System.Drawing.Size(86, 26);
this.WizardExecuteButton.TabIndex = 1;
this.WizardExecuteButton.Text = "E&xecute";
this.WizardExecuteButton.UseVisualStyleBackColor = false;
this.WizardExecuteButton.Visible = false;
this.WizardExecuteButton.Click += new System.EventHandler(this.WizardExecuteButton_Click);
//
// SeparatorLinePanel
//
this.SeparatorLinePanel.AccessibleDescription = "A panel resized in a way that it looks like a separator line between the footer a" +
"rea and the wizard pages area";
this.SeparatorLinePanel.AccessibleName = "Separator Line";
this.SeparatorLinePanel.BackColor = System.Drawing.SystemColors.ActiveBorder;
this.SeparatorLinePanel.Dock = System.Windows.Forms.DockStyle.Bottom;
this.SeparatorLinePanel.Location = new System.Drawing.Point(220, 512);
this.SeparatorLinePanel.Name = "SeparatorLinePanel";
this.SeparatorLinePanel.Size = new System.Drawing.Size(564, 1);
this.SeparatorLinePanel.TabIndex = 1;
//
// AboutButton
//
this.AboutButton.AccessibleDescription = "A button to show the about page";
this.AboutButton.AccessibleName = "About";
this.AboutButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(65)))), ((int)(((byte)(65)))), ((int)(((byte)(65)))));
this.AboutButton.BackgroundImage = global::MySql.Configurator.Properties.Resources.AboutButton;
this.AboutButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.AboutButton.FlatAppearance.BorderSize = 0;
this.AboutButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.AboutButton.Location = new System.Drawing.Point(183, 12);
this.AboutButton.Name = "AboutButton";
this.AboutButton.Size = new System.Drawing.Size(25, 25);
this.AboutButton.TabIndex = 6;
this.AboutButton.UseVisualStyleBackColor = false;
this.AboutButton.Click += new System.EventHandler(this.AboutButton_Click);
//
// MySQLConfiguratorLabel
//
this.MySQLConfiguratorLabel.AccessibleDescription = "A label with the text mysql configurator";
this.MySQLConfiguratorLabel.AccessibleName = "MySQL Configurator";
this.MySQLConfiguratorLabel.AutoSize = true;
this.MySQLConfiguratorLabel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(65)))), ((int)(((byte)(65)))), ((int)(((byte)(65)))));
this.MySQLConfiguratorLabel.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold);
this.MySQLConfiguratorLabel.ForeColor = System.Drawing.Color.White;
this.MySQLConfiguratorLabel.Location = new System.Drawing.Point(29, 55);
this.MySQLConfiguratorLabel.Name = "MySQLConfiguratorLabel";
this.MySQLConfiguratorLabel.Size = new System.Drawing.Size(186, 25);
this.MySQLConfiguratorLabel.TabIndex = 7;
this.MySQLConfiguratorLabel.Text = "MySQL Configurator";
//
// WizardSideBar
//
this.WizardSideBar.AccessibleDescription = "A side bar at the left of the wizard that shows information about a current produ" +
"ct and the flow of wizard pages";
this.WizardSideBar.AccessibleName = "Wizard Side Bar";
this.WizardSideBar.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(65)))), ((int)(((byte)(65)))), ((int)(((byte)(65)))));
this.WizardSideBar.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.WizardSideBar.Dock = System.Windows.Forms.DockStyle.Left;
this.WizardSideBar.Font = new System.Drawing.Font("Segoe UI", 9F);
this.WizardSideBar.Location = new System.Drawing.Point(0, 0);
this.WizardSideBar.Name = "WizardSideBar";
this.WizardSideBar.Size = new System.Drawing.Size(220, 562);
this.WizardSideBar.TabIndex = 0;
this.WizardSideBar.TabStop = false;
//
// Wizard
//
this.AccessibleDescription = "A wizard control containing pages and navigation buttons";
this.AccessibleName = "Wizard";
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
this.BackColor = System.Drawing.Color.White;
this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.Controls.Add(this.AboutButton);
this.Controls.Add(this.MySQLConfiguratorLabel);
this.Controls.Add(this.SeparatorLinePanel);
this.Controls.Add(this.FooterAreaFlowLayoutPanel);
this.Controls.Add(this.WizardSideBar);
this.DoubleBuffered = true;
this.Margin = new System.Windows.Forms.Padding(0);
this.Name = "Wizard";
this.Size = new System.Drawing.Size(784, 562);
this.FooterAreaFlowLayoutPanel.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
protected InstallWizardSideBarControl WizardSideBar;
private System.Windows.Forms.Button WizardBackButton;
private System.Windows.Forms.Button WizardCancelButton;
private System.Windows.Forms.Button WizardNextButton;
private System.Windows.Forms.FlowLayoutPanel FooterAreaFlowLayoutPanel;
private System.Windows.Forms.Button WizardHelpButton;
private System.Windows.Forms.Button WizardExecuteButton;
private System.Windows.Forms.Button WizardFinishButton;
private System.Windows.Forms.Panel SeparatorLinePanel;
private System.Windows.Forms.Button AboutButton;
private System.Windows.Forms.Label MySQLConfiguratorLabel;
}
}