Files
lightsetup/LightSetupConfig/FrmLightSteupConfig.Designer.cs
2023-05-22 09:29:58 +08:00

190 lines
6.7 KiB
C#

namespace LightSetupConfig
{
partial class FrmLightSteupConfig
{
/// <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()
{
lb_list = new ListBox();
pn_bottom = new Panel();
lb_status = new Label();
pn_top = new Panel();
bt_save_other = new Button();
bt_save = new Button();
bt_new = new Button();
bt_open = new Button();
tb_content = new TextBox();
pn_left = new Panel();
pn_bottom.SuspendLayout();
pn_top.SuspendLayout();
pn_left.SuspendLayout();
SuspendLayout();
//
// lb_list
//
lb_list.Dock = DockStyle.Fill;
lb_list.FormattingEnabled = true;
lb_list.ItemHeight = 17;
lb_list.Location = new Point(0, 0);
lb_list.Name = "lb_list";
lb_list.Size = new Size(200, 394);
lb_list.TabIndex = 2;
lb_list.SelectedIndexChanged += lb_list_SelectedIndexChanged;
//
// pn_bottom
//
pn_bottom.AutoSize = true;
pn_bottom.Controls.Add(lb_status);
pn_bottom.Dock = DockStyle.Bottom;
pn_bottom.Location = new Point(0, 433);
pn_bottom.Name = "pn_bottom";
pn_bottom.Size = new Size(800, 17);
pn_bottom.TabIndex = 3;
//
// lb_status
//
lb_status.AutoSize = true;
lb_status.Dock = DockStyle.Fill;
lb_status.Location = new Point(0, 0);
lb_status.Name = "lb_status";
lb_status.Size = new Size(44, 17);
lb_status.TabIndex = 6;
lb_status.Text = "状态栏";
//
// pn_top
//
pn_top.Controls.Add(bt_save_other);
pn_top.Controls.Add(bt_save);
pn_top.Controls.Add(bt_new);
pn_top.Controls.Add(bt_open);
pn_top.Dock = DockStyle.Top;
pn_top.Location = new Point(0, 0);
pn_top.Name = "pn_top";
pn_top.Size = new Size(800, 39);
pn_top.TabIndex = 4;
//
// bt_save_other
//
bt_save_other.Location = new Point(269, 10);
bt_save_other.Name = "bt_save_other";
bt_save_other.Size = new Size(75, 23);
bt_save_other.TabIndex = 4;
bt_save_other.Text = "另存为(&W)";
bt_save_other.UseVisualStyleBackColor = true;
bt_save_other.Click += tb_save_other_Click;
bt_save_other.MouseEnter += bt_save_other_MouseEnter;
bt_save_other.MouseLeave += bt_open_MouseLeave;
//
// bt_save
//
bt_save.Location = new Point(182, 10);
bt_save.Name = "bt_save";
bt_save.Size = new Size(75, 23);
bt_save.TabIndex = 3;
bt_save.Text = "保存(&S)";
bt_save.UseVisualStyleBackColor = true;
bt_save.Click += bt_save_Click;
bt_save.MouseEnter += bt_save_MouseEnter;
bt_save.MouseLeave += bt_open_MouseLeave;
//
// bt_new
//
bt_new.Location = new Point(8, 10);
bt_new.Name = "bt_new";
bt_new.Size = new Size(75, 23);
bt_new.TabIndex = 2;
bt_new.Text = "新建(&N)";
bt_new.UseVisualStyleBackColor = true;
bt_new.Click += bt_new_Click;
bt_new.MouseEnter += bt_new_MouseEnter;
bt_new.MouseLeave += bt_open_MouseLeave;
//
// bt_open
//
bt_open.Location = new Point(95, 10);
bt_open.Name = "bt_open";
bt_open.Size = new Size(75, 23);
bt_open.TabIndex = 2;
bt_open.Text = "打开(&O)";
bt_open.UseVisualStyleBackColor = true;
bt_open.Click += bt_open_Click;
bt_open.MouseEnter += bt_open_MouseEnter;
bt_open.MouseLeave += bt_open_MouseLeave;
//
// tb_content
//
tb_content.Dock = DockStyle.Fill;
tb_content.Location = new Point(200, 39);
tb_content.Multiline = true;
tb_content.Name = "tb_content";
tb_content.ScrollBars = ScrollBars.Vertical;
tb_content.Size = new Size(600, 394);
tb_content.TabIndex = 5;
tb_content.TextChanged += tb_content_TextChanged;
//
// pn_left
//
pn_left.Controls.Add(lb_list);
pn_left.Dock = DockStyle.Left;
pn_left.Location = new Point(0, 39);
pn_left.Name = "pn_left";
pn_left.Size = new Size(200, 394);
pn_left.TabIndex = 6;
//
// FrmLightSteupConfig
//
AutoScaleDimensions = new SizeF(7F, 17F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(800, 450);
Controls.Add(tb_content);
Controls.Add(pn_left);
Controls.Add(pn_top);
Controls.Add(pn_bottom);
Name = "FrmLightSteupConfig";
Text = "安装目录MD5编码生成器-配置文件管理(颜佐光)";
Load += FrmLightSteupConfig_Load;
KeyDown += FrmLightSetupConfig_KeyDown;
pn_bottom.ResumeLayout(false);
pn_bottom.PerformLayout();
pn_top.ResumeLayout(false);
pn_left.ResumeLayout(false);
ResumeLayout(false);
PerformLayout();
}
#endregion
private ListBox lb_list;
private Panel pn_bottom;
private Panel pn_top;
private TextBox tb_content;
private Label lb_status;
private Button bt_save_other;
private Button bt_save;
private Button bt_open;
private Panel pn_left;
private Button bt_new;
}
}