📄 form1.designer.cs
字号:
/*
* ? SharpDevelop ???
* ??: Administrator
* ??: 2008-1-1 ???
* ??: 5:31
*
* ??????????,?????“?? | ?? | ?? | ??????”?
*/
namespace MyTools
{
partial class OpForm
{
/// <summary>
/// Designer variable used to keep track of non-visual components.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Disposes resources used by the form.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing) {
if (components != null) {
components.Dispose();
}
}
base.Dispose(disposing);
}
/// <summary>
/// This method is required for Windows Forms designer support.
/// Do not change the method contents inside the source code editor. The Forms designer might
/// not be able to load this method if it was changed manually.
/// </summary>
private void InitializeComponent()
{
this.listView1 = new System.Windows.Forms.ListView();
this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
this.label1 = new System.Windows.Forms.Label();
this.PathBox = new System.Windows.Forms.TextBox();
this.KeyBox = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.button3 = new System.Windows.Forms.Button();
this.button2 = new System.Windows.Forms.Button();
this.button1 = new System.Windows.Forms.Button();
this.button4 = new System.Windows.Forms.Button();
this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
this.SuspendLayout();
//
// listView1
//
this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnHeader1,
this.columnHeader2});
this.listView1.Location = new System.Drawing.Point(12, 23);
this.listView1.Name = "listView1";
this.listView1.Size = new System.Drawing.Size(224, 135);
this.listView1.TabIndex = 0;
this.listView1.UseCompatibleStateImageBehavior = false;
this.listView1.View = System.Windows.Forms.View.Details;
this.listView1.SelectedIndexChanged += new System.EventHandler(this.ListView1SelectedIndexChanged);
//
// columnHeader1
//
this.columnHeader1.Text = "Key";
this.columnHeader1.Width = 52;
//
// columnHeader2
//
this.columnHeader2.Text = "Value";
this.columnHeader2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
this.columnHeader2.Width = 159;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(3, 3);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(35, 12);
this.label1.TabIndex = 1;
this.label1.Text = "List:";
this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// PathBox
//
this.PathBox.Location = new System.Drawing.Point(37, 218);
this.PathBox.Name = "PathBox";
this.PathBox.Size = new System.Drawing.Size(218, 21);
this.PathBox.TabIndex = 8;
//
// KeyBox
//
this.KeyBox.Location = new System.Drawing.Point(37, 176);
this.KeyBox.Name = "KeyBox";
this.KeyBox.Size = new System.Drawing.Size(76, 21);
this.KeyBox.TabIndex = 7;
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(3, 203);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(35, 12);
this.label2.TabIndex = 6;
this.label2.Text = "Path:";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(3, 161);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(29, 12);
this.label3.TabIndex = 5;
this.label3.Text = "Key:";
//
// button3
//
this.button3.Location = new System.Drawing.Point(241, 134);
this.button3.Name = "button3";
this.button3.Size = new System.Drawing.Size(54, 24);
this.button3.TabIndex = 11;
this.button3.Text = "Remove";
this.button3.UseVisualStyleBackColor = true;
//
// button2
//
this.button2.Location = new System.Drawing.Point(241, 97);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(54, 22);
this.button2.TabIndex = 10;
this.button2.Text = "Update";
this.button2.UseVisualStyleBackColor = true;
//
// button1
//
this.button1.Location = new System.Drawing.Point(241, 62);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(54, 21);
this.button1.TabIndex = 9;
this.button1.Text = "Add";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.Button1Click);
//
// button4
//
this.button4.Location = new System.Drawing.Point(265, 218);
this.button4.Name = "button4";
this.button4.Size = new System.Drawing.Size(30, 23);
this.button4.TabIndex = 12;
this.button4.Text = "..";
this.button4.UseVisualStyleBackColor = true;
this.button4.Click += new System.EventHandler(this.Button4Click);
//
// openFileDialog1
//
this.openFileDialog1.FileName = "openFileDialog1";
this.openFileDialog1.InitialDirectory = "*.*|所有文件";
//
// OpForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(307, 245);
this.Controls.Add(this.button4);
this.Controls.Add(this.button3);
this.Controls.Add(this.button2);
this.Controls.Add(this.button1);
this.Controls.Add(this.PathBox);
this.Controls.Add(this.KeyBox);
this.Controls.Add(this.label2);
this.Controls.Add(this.label3);
this.Controls.Add(this.label1);
this.Controls.Add(this.listView1);
this.Name = "OpForm";
this.Text = "OpForm";
this.Load += new System.EventHandler(this.OpFormLoad);
this.ResumeLayout(false);
this.PerformLayout();
}
private System.Windows.Forms.OpenFileDialog openFileDialog1;
private System.Windows.Forms.Button button4;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TextBox KeyBox;
private System.Windows.Forms.TextBox PathBox;
private System.Windows.Forms.Button button3;
private System.Windows.Forms.Button button2;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.ColumnHeader columnHeader2;
private System.Windows.Forms.ColumnHeader columnHeader1;
private System.Windows.Forms.ListView listView1;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -