📄 frmphones.designer.cs
字号:
namespace GPCore.Forms
{
partial class frmPhones
{
/// <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()
{
this.toolStrip1 = new System.Windows.Forms.ToolStrip();
this.btnClose = new System.Windows.Forms.ToolStripLabel();
this.btnDelete = new System.Windows.Forms.ToolStripLabel();
this.btnModify = new System.Windows.Forms.ToolStripLabel();
this.btnAdd = new System.Windows.Forms.ToolStripLabel();
this.listView1 = new System.Windows.Forms.ListView();
this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
this.columnHeader3 = new System.Windows.Forms.ColumnHeader();
this.toolStrip1.SuspendLayout();
this.SuspendLayout();
//
// toolStrip1
//
this.toolStrip1.Dock = System.Windows.Forms.DockStyle.Bottom;
this.toolStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.btnClose,
this.btnDelete,
this.btnModify,
this.btnAdd});
this.toolStrip1.Location = new System.Drawing.Point(0, 248);
this.toolStrip1.Name = "toolStrip1";
this.toolStrip1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
this.toolStrip1.Size = new System.Drawing.Size(292, 25);
this.toolStrip1.TabIndex = 0;
this.toolStrip1.Text = "toolStrip1";
//
// btnClose
//
this.btnClose.Name = "btnClose";
this.btnClose.Size = new System.Drawing.Size(33, 22);
this.btnClose.Text = "Close";
//
// btnDelete
//
this.btnDelete.Name = "btnDelete";
this.btnDelete.Size = new System.Drawing.Size(38, 22);
this.btnDelete.Text = "Delete";
this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
//
// btnModify
//
this.btnModify.Name = "btnModify";
this.btnModify.Size = new System.Drawing.Size(38, 22);
this.btnModify.Text = "Modify";
//
// btnAdd
//
this.btnAdd.Name = "btnAdd";
this.btnAdd.Size = new System.Drawing.Size(26, 22);
this.btnAdd.Text = "Add";
this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
//
// listView1
//
this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnHeader1,
this.columnHeader2,
this.columnHeader3});
this.listView1.Dock = System.Windows.Forms.DockStyle.Fill;
this.listView1.Location = new System.Drawing.Point(0, 0);
this.listView1.Name = "listView1";
this.listView1.Size = new System.Drawing.Size(292, 248);
this.listView1.TabIndex = 1;
this.listView1.UseCompatibleStateImageBehavior = false;
this.listView1.View = System.Windows.Forms.View.Details;
//
// columnHeader1
//
this.columnHeader1.Text = "Phone";
this.columnHeader1.Width = 76;
//
// columnHeader2
//
this.columnHeader2.Text = "Vocoder";
this.columnHeader2.Width = 73;
//
// columnHeader3
//
this.columnHeader3.Text = "Network Protocol";
this.columnHeader3.Width = 99;
//
// frmPhones
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(292, 273);
this.Controls.Add(this.listView1);
this.Controls.Add(this.toolStrip1);
this.Name = "frmPhones";
this.Text = "frmPhones";
this.toolStrip1.ResumeLayout(false);
this.toolStrip1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ToolStrip toolStrip1;
private System.Windows.Forms.ListView listView1;
private System.Windows.Forms.ColumnHeader columnHeader1;
private System.Windows.Forms.ColumnHeader columnHeader2;
private System.Windows.Forms.ColumnHeader columnHeader3;
private System.Windows.Forms.ToolStripLabel btnClose;
private System.Windows.Forms.ToolStripLabel btnModify;
private System.Windows.Forms.ToolStripLabel btnDelete;
private System.Windows.Forms.ToolStripLabel btnAdd;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -