📄 frmplugin.designer.cs
字号:
namespace GPCore.Forms
{
partial class frmPlugin
{
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmPlugin));
this.listView = new System.Windows.Forms.ListView();
this.colName = new System.Windows.Forms.ColumnHeader();
this.colDesc = new System.Windows.Forms.ColumnHeader();
this.colCompany = new System.Windows.Forms.ColumnHeader();
this.colVersion = new System.Windows.Forms.ColumnHeader();
this.colDev = new System.Windows.Forms.ColumnHeader();
this.toolStripContainer1 = new System.Windows.Forms.ToolStripContainer();
this.toolStrip = new System.Windows.Forms.ToolStrip();
this.cmdClose = new System.Windows.Forms.ToolStripButton();
this.toolStripContainer1.BottomToolStripPanel.SuspendLayout();
this.toolStripContainer1.ContentPanel.SuspendLayout();
this.toolStripContainer1.SuspendLayout();
this.toolStrip.SuspendLayout();
this.SuspendLayout();
//
// listView
//
this.listView.CheckBoxes = true;
this.listView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.colName,
this.colDesc,
this.colCompany,
this.colVersion,
this.colDev});
this.listView.Dock = System.Windows.Forms.DockStyle.Fill;
this.listView.FullRowSelect = true;
this.listView.Location = new System.Drawing.Point(0, 0);
this.listView.Name = "listView";
this.listView.Size = new System.Drawing.Size(758, 481);
this.listView.TabIndex = 1;
this.listView.UseCompatibleStateImageBehavior = false;
this.listView.View = System.Windows.Forms.View.Details;
this.listView.ItemChecked += new System.Windows.Forms.ItemCheckedEventHandler(this.listView_ItemChecked);
//
// colName
//
this.colName.Text = "Name";
//
// colDesc
//
this.colDesc.Text = "Description";
//
// colCompany
//
this.colCompany.Text = "Company";
//
// colVersion
//
this.colVersion.Text = "Version";
//
// colDev
//
this.colDev.Text = "Developers";
//
// toolStripContainer1
//
//
// toolStripContainer1.BottomToolStripPanel
//
this.toolStripContainer1.BottomToolStripPanel.Controls.Add(this.toolStrip);
//
// toolStripContainer1.ContentPanel
//
this.toolStripContainer1.ContentPanel.Controls.Add(this.listView);
this.toolStripContainer1.ContentPanel.Size = new System.Drawing.Size(758, 481);
this.toolStripContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
this.toolStripContainer1.Location = new System.Drawing.Point(0, 0);
this.toolStripContainer1.Name = "toolStripContainer1";
this.toolStripContainer1.Size = new System.Drawing.Size(758, 533);
this.toolStripContainer1.TabIndex = 2;
this.toolStripContainer1.Text = "toolStripContainer1";
//
// toolStrip
//
this.toolStrip.Dock = System.Windows.Forms.DockStyle.None;
this.toolStrip.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.toolStrip.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
this.toolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.cmdClose});
this.toolStrip.Location = new System.Drawing.Point(0, 0);
this.toolStrip.Name = "toolStrip";
this.toolStrip.Padding = new System.Windows.Forms.Padding(0, 2, 5, 2);
this.toolStrip.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
this.toolStrip.Size = new System.Drawing.Size(758, 27);
this.toolStrip.Stretch = true;
this.toolStrip.TabIndex = 0;
//
// cmdClose
//
this.cmdClose.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.cmdClose.Image = ((System.Drawing.Image)(resources.GetObject("cmdClose.Image")));
this.cmdClose.ImageTransparentColor = System.Drawing.Color.Magenta;
this.cmdClose.Name = "cmdClose";
this.cmdClose.Size = new System.Drawing.Size(43, 20);
this.cmdClose.Text = "Close";
this.cmdClose.ToolTipText = "Close";
this.cmdClose.Click += new System.EventHandler(this.cmdClose_Click);
//
// frmPlugin
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(758, 533);
this.Controls.Add(this.toolStripContainer1);
this.Name = "frmPlugin";
this.Text = "Plugin Manager";
this.Load += new System.EventHandler(this.frmInterface_Load);
this.toolStripContainer1.BottomToolStripPanel.ResumeLayout(false);
this.toolStripContainer1.BottomToolStripPanel.PerformLayout();
this.toolStripContainer1.ContentPanel.ResumeLayout(false);
this.toolStripContainer1.ResumeLayout(false);
this.toolStripContainer1.PerformLayout();
this.toolStrip.ResumeLayout(false);
this.toolStrip.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.ListView listView;
private System.Windows.Forms.ColumnHeader colName;
private System.Windows.Forms.ColumnHeader colDesc;
private System.Windows.Forms.ColumnHeader colCompany;
private System.Windows.Forms.ColumnHeader colVersion;
private System.Windows.Forms.ColumnHeader colDev;
private System.Windows.Forms.ToolStripContainer toolStripContainer1;
private System.Windows.Forms.ToolStrip toolStrip;
private System.Windows.Forms.ToolStripButton cmdClose;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -