124 lines
5.9 KiB
C#
124 lines
5.9 KiB
C#
|
namespace UI_WinForms.Components
|
|||
|
{
|
|||
|
partial class Setting<TSetting>
|
|||
|
{
|
|||
|
/// <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.buttonSave = new System.Windows.Forms.Button();
|
|||
|
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 = 5;
|
|||
|
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));
|
|||
|
this.tableLayout.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 120F));
|
|||
|
this.tableLayout.Controls.Add(this.buttonSave, 4, 0);
|
|||
|
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;
|
|||
|
//
|
|||
|
// buttonSave
|
|||
|
//
|
|||
|
this.buttonSave.Dock = System.Windows.Forms.DockStyle.Fill;
|
|||
|
this.buttonSave.Location = new System.Drawing.Point(1147, 3);
|
|||
|
this.buttonSave.Name = "buttonSave";
|
|||
|
this.buttonSave.Size = new System.Drawing.Size(114, 64);
|
|||
|
this.buttonSave.TabIndex = 0;
|
|||
|
this.buttonSave.Text = "Save";
|
|||
|
this.buttonSave.UseVisualStyleBackColor = true;
|
|||
|
this.buttonSave.Click += new System.EventHandler(this.buttonSave_Click);
|
|||
|
//
|
|||
|
// 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";
|
|||
|
this.labelExplanation.Size = new System.Drawing.Size(602, 70);
|
|||
|
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 Button buttonSave;
|
|||
|
private Label labelExplanation;
|
|||
|
private Label labelSettingName;
|
|||
|
private Label labelIcon;
|
|||
|
}
|
|||
|
}
|