I18NCommander/I18N Commander/UI WinForms/Dialogs/InputDialog.Designer.cs

165 lines
8.1 KiB
C#

namespace UI_WinForms.Dialogs
{
partial class InputDialog
{
/// <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();
}
base.Dispose(disposing);
}
#region Windows Form 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.tableLayout = new System.Windows.Forms.TableLayoutPanel();
this.labelHead = new System.Windows.Forms.Label();
this.flowLayoutBottom = new System.Windows.Forms.FlowLayoutPanel();
this.buttonOk = new System.Windows.Forms.Button();
this.buttonCancel = new System.Windows.Forms.Button();
this.textBoxInput = new System.Windows.Forms.TextBox();
this.checkBoxQuestion = new System.Windows.Forms.CheckBox();
this.tableLayout.SuspendLayout();
this.flowLayoutBottom.SuspendLayout();
this.SuspendLayout();
//
// tableLayout
//
this.tableLayout.AutoSize = true;
this.tableLayout.ColumnCount = 1;
this.tableLayout.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayout.Controls.Add(this.labelHead, 0, 0);
this.tableLayout.Controls.Add(this.flowLayoutBottom, 0, 2);
this.tableLayout.Controls.Add(this.textBoxInput, 0, 1);
this.tableLayout.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayout.Location = new System.Drawing.Point(0, 0);
this.tableLayout.Name = "tableLayout";
this.tableLayout.RowCount = 4;
this.tableLayout.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayout.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayout.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 66F));
this.tableLayout.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayout.Size = new System.Drawing.Size(800, 139);
this.tableLayout.TabIndex = 0;
//
// labelHead
//
this.labelHead.AutoSize = true;
this.labelHead.Dock = System.Windows.Forms.DockStyle.Fill;
this.labelHead.Location = new System.Drawing.Point(3, 0);
this.labelHead.Name = "labelHead";
this.labelHead.Size = new System.Drawing.Size(794, 28);
this.labelHead.TabIndex = 0;
this.labelHead.Text = "header";
//
// flowLayoutBottom
//
this.flowLayoutBottom.Controls.Add(this.buttonOk);
this.flowLayoutBottom.Controls.Add(this.buttonCancel);
this.flowLayoutBottom.Controls.Add(this.checkBoxQuestion);
this.flowLayoutBottom.Dock = System.Windows.Forms.DockStyle.Fill;
this.flowLayoutBottom.Location = new System.Drawing.Point(3, 68);
this.flowLayoutBottom.Margin = new System.Windows.Forms.Padding(3, 0, 0, 0);
this.flowLayoutBottom.Name = "flowLayoutBottom";
this.flowLayoutBottom.Size = new System.Drawing.Size(797, 66);
this.flowLayoutBottom.TabIndex = 0;
//
// buttonOk
//
this.buttonOk.AutoSize = true;
this.buttonOk.Image = global::UI_WinForms.Resources.Icons.icons8_ok_512;
this.buttonOk.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.buttonOk.Location = new System.Drawing.Point(3, 3);
this.buttonOk.Name = "buttonOk";
this.buttonOk.Size = new System.Drawing.Size(114, 60);
this.buttonOk.TabIndex = 1;
this.buttonOk.Text = "Ok";
this.buttonOk.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
this.buttonOk.UseVisualStyleBackColor = true;
this.buttonOk.Click += new System.EventHandler(this.buttonOk_Click);
//
// buttonCancel
//
this.buttonCancel.AutoSize = true;
this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.buttonCancel.Image = global::UI_WinForms.Resources.Icons.icons8_cancel_512;
this.buttonCancel.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.buttonCancel.Location = new System.Drawing.Point(123, 3);
this.buttonCancel.Name = "buttonCancel";
this.buttonCancel.Size = new System.Drawing.Size(124, 60);
this.buttonCancel.TabIndex = 2;
this.buttonCancel.Text = "Cancel";
this.buttonCancel.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
this.buttonCancel.UseVisualStyleBackColor = true;
//
// textBoxInput
//
this.textBoxInput.Dock = System.Windows.Forms.DockStyle.Fill;
this.textBoxInput.Location = new System.Drawing.Point(6, 31);
this.textBoxInput.Margin = new System.Windows.Forms.Padding(6, 3, 3, 3);
this.textBoxInput.Name = "textBoxInput";
this.textBoxInput.Size = new System.Drawing.Size(791, 34);
this.textBoxInput.TabIndex = 1;
this.textBoxInput.KeyUp += new System.Windows.Forms.KeyEventHandler(this.textBoxInput_KeyUp);
//
// checkBoxIsRoot
//
this.checkBoxQuestion.AutoSize = true;
this.checkBoxQuestion.Dock = System.Windows.Forms.DockStyle.Left;
this.checkBoxQuestion.Location = new System.Drawing.Point(253, 3);
this.checkBoxQuestion.Name = "checkBoxQuestion";
this.checkBoxQuestion.Size = new System.Drawing.Size(458, 60);
this.checkBoxQuestion.TabIndex = 3;
this.checkBoxQuestion.UseVisualStyleBackColor = true;
//
// InputDialog
//
this.AutoScaleDimensions = new System.Drawing.SizeF(120F, 120F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.AutoSize = true;
this.CancelButton = this.buttonCancel;
this.ClientSize = new System.Drawing.Size(800, 139);
this.Controls.Add(this.tableLayout);
this.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "InputDialog";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "InputDialog";
this.tableLayout.ResumeLayout(false);
this.tableLayout.PerformLayout();
this.flowLayoutBottom.ResumeLayout(false);
this.flowLayoutBottom.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private TableLayoutPanel tableLayout;
private Label labelHead;
private FlowLayoutPanel flowLayoutBottom;
private TextBox textBoxInput;
private Button buttonOk;
private Button buttonCancel;
private CheckBox checkBoxQuestion;
}
}