109 lines
5.1 KiB
C#
109 lines
5.1 KiB
C#
namespace UI_WinForms.Components
|
|
{
|
|
sealed partial class Setting
|
|
{
|
|
/// <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
|
|
//
|
|
this.tableLayout.ColumnCount = 4;
|
|
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, 300F));
|
|
this.tableLayout.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
|
|
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(1000, 72);
|
|
this.tableLayout.TabIndex = 0;
|
|
//
|
|
// labelExplanation
|
|
//
|
|
this.labelExplanation.AutoSize = true;
|
|
this.labelExplanation.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.labelExplanation.Location = new System.Drawing.Point(619, 0);
|
|
this.labelExplanation.Name = "labelExplanation";
|
|
this.labelExplanation.Size = new System.Drawing.Size(378, 72);
|
|
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, 72);
|
|
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, 72);
|
|
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(1000, 72);
|
|
this.tableLayout.ResumeLayout(false);
|
|
this.tableLayout.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private TableLayoutPanel tableLayout;
|
|
private Label labelExplanation;
|
|
private Label labelSettingName;
|
|
private Label labelIcon;
|
|
}
|
|
}
|