I18NCommander/I18N Commander/UI WinForms/Components/Setting.Designer.cs

110 lines
5.2 KiB
C#
Raw Normal View History

2022-07-26 17:08:47 +00:00
namespace UI_WinForms.Components
{
2022-07-26 17:40:46 +00:00
partial class Setting
2022-07-26 17:08:47 +00:00
{
/// <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 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.tableLayout = new System.Windows.Forms.TableLayoutPanel();
this.labelExplanation = new System.Windows.Forms.Label();
this.labelSettingName = new System.Windows.Forms.Label();
this.labelIcon = new System.Windows.Forms.Label();
this.tableLayout.SuspendLayout();
this.SuspendLayout();
//
// tableLayout
//
2022-07-26 17:40:46 +00:00
this.tableLayout.ColumnCount = 4;
2022-07-26 17:08:47 +00:00
this.tableLayout.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 66F));
this.tableLayout.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 250F));
this.tableLayout.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 220F));
this.tableLayout.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
2022-07-26 17:40:46 +00:00
this.tableLayout.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F));
2022-07-26 17:08:47 +00:00
this.tableLayout.Controls.Add(this.labelExplanation, 3, 0);
this.tableLayout.Controls.Add(this.labelSettingName, 1, 0);
this.tableLayout.Controls.Add(this.labelIcon, 0, 0);
this.tableLayout.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayout.Location = new System.Drawing.Point(0, 0);
this.tableLayout.Margin = new System.Windows.Forms.Padding(0);
this.tableLayout.Name = "tableLayout";
this.tableLayout.RowCount = 1;
this.tableLayout.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayout.Size = new System.Drawing.Size(1264, 70);
this.tableLayout.TabIndex = 0;
//
// labelExplanation
//
this.labelExplanation.AutoSize = true;
this.labelExplanation.Dock = System.Windows.Forms.DockStyle.Fill;
this.labelExplanation.Location = new System.Drawing.Point(539, 0);
this.labelExplanation.Name = "labelExplanation";
2022-07-26 17:40:46 +00:00
this.labelExplanation.Size = new System.Drawing.Size(722, 70);
2022-07-26 17:08:47 +00:00
this.labelExplanation.TabIndex = 1;
this.labelExplanation.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// labelSettingName
//
this.labelSettingName.AutoSize = true;
this.labelSettingName.Dock = System.Windows.Forms.DockStyle.Fill;
this.labelSettingName.Location = new System.Drawing.Point(69, 0);
this.labelSettingName.Name = "labelSettingName";
this.labelSettingName.Size = new System.Drawing.Size(244, 70);
this.labelSettingName.TabIndex = 2;
this.labelSettingName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// labelIcon
//
this.labelIcon.AutoSize = true;
this.labelIcon.Dock = System.Windows.Forms.DockStyle.Fill;
this.labelIcon.Location = new System.Drawing.Point(3, 0);
this.labelIcon.Name = "labelIcon";
this.labelIcon.Size = new System.Drawing.Size(60, 70);
this.labelIcon.TabIndex = 3;
//
// Setting
//
this.AutoScaleDimensions = new System.Drawing.SizeF(120F, 120F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.Controls.Add(this.tableLayout);
this.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.Name = "Setting";
this.Size = new System.Drawing.Size(1264, 70);
this.tableLayout.ResumeLayout(false);
this.tableLayout.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private TableLayoutPanel tableLayout;
private Label labelExplanation;
private Label labelSettingName;
private Label labelIcon;
}
}