PortProxyGUI/PortProxyGUI - NET35/PortProxyGUI.Designer.cs

212 lines
10 KiB
C#
Raw Normal View History

2020-05-29 03:32:44 +08:00
namespace PortProxyGUI
{
partial class PortProxyGUI
{
/// <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.components = new System.ComponentModel.Container();
2020-05-29 11:40:20 +08:00
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(PortProxyGUI));
2021-03-10 01:12:07 +08:00
this.listViewProxies = new System.Windows.Forms.ListView();
2020-09-24 18:06:57 +08:00
this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader4 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader5 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
2021-03-10 01:12:07 +08:00
this.columnHeader6 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
2020-05-29 03:32:44 +08:00
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
2021-03-10 01:12:07 +08:00
this.toolStripMenuItem_Enable = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem_Disable = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
2020-12-09 21:19:58 +08:00
this.toolStripMenuItem_New = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem_Modify = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem_Delete = new System.Windows.Forms.ToolStripMenuItem();
2020-05-29 03:32:44 +08:00
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
2020-12-09 21:19:58 +08:00
this.toolStripMenuItem_Refresh = new System.Windows.Forms.ToolStripMenuItem();
2020-05-29 03:32:44 +08:00
this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
2020-12-09 21:19:58 +08:00
this.toolStripMenuItem_About = new System.Windows.Forms.ToolStripMenuItem();
2021-03-10 01:12:07 +08:00
this.imageListProxies = new System.Windows.Forms.ImageList(this.components);
2020-05-29 03:32:44 +08:00
this.contextMenuStrip1.SuspendLayout();
this.SuspendLayout();
//
2021-03-10 01:12:07 +08:00
// listViewProxies
2020-05-29 03:32:44 +08:00
//
2021-03-10 01:12:07 +08:00
this.listViewProxies.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.listViewProxies.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
2020-05-29 03:32:44 +08:00
this.columnHeader1,
this.columnHeader2,
this.columnHeader3,
this.columnHeader4,
2021-03-10 01:12:07 +08:00
this.columnHeader5,
this.columnHeader6});
this.listViewProxies.ContextMenuStrip = this.contextMenuStrip1;
resources.ApplyResources(this.listViewProxies, "listViewProxies");
this.listViewProxies.FullRowSelect = true;
this.listViewProxies.HideSelection = false;
this.listViewProxies.Name = "listViewProxies";
this.listViewProxies.SmallImageList = this.imageListProxies;
this.listViewProxies.UseCompatibleStateImageBehavior = false;
this.listViewProxies.View = System.Windows.Forms.View.Details;
this.listViewProxies.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.listView1_ColumnClick);
this.listViewProxies.DoubleClick += new System.EventHandler(this.listView1_DoubleClick);
this.listViewProxies.MouseUp += new System.Windows.Forms.MouseEventHandler(this.listView1_MouseUp);
2020-05-29 03:32:44 +08:00
//
// columnHeader1
//
2020-05-29 11:40:20 +08:00
resources.ApplyResources(this.columnHeader1, "columnHeader1");
2020-05-29 03:32:44 +08:00
//
// columnHeader2
//
2020-05-29 11:40:20 +08:00
resources.ApplyResources(this.columnHeader2, "columnHeader2");
2020-05-29 03:32:44 +08:00
//
// columnHeader3
//
2020-05-29 11:40:20 +08:00
resources.ApplyResources(this.columnHeader3, "columnHeader3");
2020-05-29 03:32:44 +08:00
//
// columnHeader4
//
2020-05-29 11:40:20 +08:00
resources.ApplyResources(this.columnHeader4, "columnHeader4");
//
// columnHeader5
//
resources.ApplyResources(this.columnHeader5, "columnHeader5");
2020-05-29 03:32:44 +08:00
//
2021-03-10 01:12:07 +08:00
// columnHeader6
//
resources.ApplyResources(this.columnHeader6, "columnHeader6");
//
2020-05-29 03:32:44 +08:00
// contextMenuStrip1
//
this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
2021-03-10 01:12:07 +08:00
this.toolStripMenuItem_Enable,
this.toolStripMenuItem_Disable,
this.toolStripSeparator3,
this.toolStripMenuItem_Refresh,
this.toolStripSeparator2,
2020-12-09 21:19:58 +08:00
this.toolStripMenuItem_New,
this.toolStripMenuItem_Modify,
this.toolStripMenuItem_Delete,
2020-05-29 03:32:44 +08:00
this.toolStripSeparator1,
2020-12-09 21:19:58 +08:00
this.toolStripMenuItem_About});
2020-05-29 03:32:44 +08:00
this.contextMenuStrip1.Name = "contextMenuStrip1";
2020-05-29 11:40:20 +08:00
resources.ApplyResources(this.contextMenuStrip1, "contextMenuStrip1");
2020-05-29 03:32:44 +08:00
this.contextMenuStrip1.MouseClick += new System.Windows.Forms.MouseEventHandler(this.contextMenuStrip1_MouseClick);
//
2021-03-10 01:12:07 +08:00
// toolStripMenuItem_Enable
//
this.toolStripMenuItem_Enable.Name = "toolStripMenuItem_Enable";
resources.ApplyResources(this.toolStripMenuItem_Enable, "toolStripMenuItem_Enable");
//
// toolStripMenuItem_Disable
//
this.toolStripMenuItem_Disable.Name = "toolStripMenuItem_Disable";
resources.ApplyResources(this.toolStripMenuItem_Disable, "toolStripMenuItem_Disable");
//
// toolStripSeparator3
//
this.toolStripSeparator3.Name = "toolStripSeparator3";
resources.ApplyResources(this.toolStripSeparator3, "toolStripSeparator3");
//
2020-12-09 21:19:58 +08:00
// toolStripMenuItem_New
2020-05-29 03:32:44 +08:00
//
2020-12-09 21:19:58 +08:00
this.toolStripMenuItem_New.Name = "toolStripMenuItem_New";
resources.ApplyResources(this.toolStripMenuItem_New, "toolStripMenuItem_New");
2020-05-29 03:32:44 +08:00
//
2020-12-09 21:19:58 +08:00
// toolStripMenuItem_Modify
2020-05-29 03:32:44 +08:00
//
2020-12-09 21:19:58 +08:00
this.toolStripMenuItem_Modify.Name = "toolStripMenuItem_Modify";
resources.ApplyResources(this.toolStripMenuItem_Modify, "toolStripMenuItem_Modify");
//
// toolStripMenuItem_Delete
//
this.toolStripMenuItem_Delete.Name = "toolStripMenuItem_Delete";
resources.ApplyResources(this.toolStripMenuItem_Delete, "toolStripMenuItem_Delete");
2020-05-29 03:32:44 +08:00
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
2020-05-29 11:40:20 +08:00
resources.ApplyResources(this.toolStripSeparator1, "toolStripSeparator1");
2020-05-29 03:32:44 +08:00
//
2020-12-09 21:19:58 +08:00
// toolStripMenuItem_Refresh
2020-05-29 03:32:44 +08:00
//
2020-12-09 21:19:58 +08:00
this.toolStripMenuItem_Refresh.Name = "toolStripMenuItem_Refresh";
resources.ApplyResources(this.toolStripMenuItem_Refresh, "toolStripMenuItem_Refresh");
2020-05-29 03:32:44 +08:00
//
// toolStripSeparator2
//
this.toolStripSeparator2.Name = "toolStripSeparator2";
2020-05-29 11:40:20 +08:00
resources.ApplyResources(this.toolStripSeparator2, "toolStripSeparator2");
2020-05-29 03:32:44 +08:00
//
2020-12-09 21:19:58 +08:00
// toolStripMenuItem_About
2020-05-29 03:32:44 +08:00
//
2020-12-09 21:19:58 +08:00
this.toolStripMenuItem_About.Name = "toolStripMenuItem_About";
resources.ApplyResources(this.toolStripMenuItem_About, "toolStripMenuItem_About");
2020-05-29 03:32:44 +08:00
//
2021-03-10 01:12:07 +08:00
// imageListProxies
//
this.imageListProxies.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageListProxies.ImageStream")));
this.imageListProxies.TransparentColor = System.Drawing.Color.Transparent;
this.imageListProxies.Images.SetKeyName(0, "disable.png");
this.imageListProxies.Images.SetKeyName(1, "enable.png");
//
2020-05-29 03:32:44 +08:00
// PortProxyGUI
//
2020-05-29 11:40:20 +08:00
resources.ApplyResources(this, "$this");
2020-05-29 03:32:44 +08:00
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
2021-03-10 01:12:07 +08:00
this.Controls.Add(this.listViewProxies);
2020-05-29 03:32:44 +08:00
this.Name = "PortProxyGUI";
this.Load += new System.EventHandler(this.PortProxyGUI_Load);
2021-03-10 01:12:07 +08:00
this.Shown += new System.EventHandler(this.PortProxyGUI_Shown);
2020-05-29 03:32:44 +08:00
this.contextMenuStrip1.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
2021-03-10 01:12:07 +08:00
private System.Windows.Forms.ListView listViewProxies;
2020-05-29 03:32:44 +08:00
private System.Windows.Forms.ColumnHeader columnHeader2;
2021-03-10 01:12:07 +08:00
private System.Windows.Forms.ColumnHeader columnHeader3;
2020-05-29 03:32:44 +08:00
private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
2020-12-09 21:19:58 +08:00
private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem_New;
private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem_Delete;
2021-03-10 01:12:07 +08:00
private System.Windows.Forms.ColumnHeader columnHeader4;
2020-05-29 03:32:44 +08:00
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
2020-12-09 21:19:58 +08:00
private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem_Refresh;
2021-03-10 01:12:07 +08:00
private System.Windows.Forms.ColumnHeader columnHeader5;
2020-05-29 03:32:44 +08:00
private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
2020-12-09 21:19:58 +08:00
private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem_About;
2021-03-10 01:12:07 +08:00
private System.Windows.Forms.ColumnHeader columnHeader6;
2020-12-09 21:19:58 +08:00
private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem_Modify;
2021-03-10 01:12:07 +08:00
private System.Windows.Forms.ColumnHeader columnHeader1;
private System.Windows.Forms.ImageList imageListProxies;
private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem_Enable;
private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem_Disable;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator3;
2020-05-29 03:32:44 +08:00
}
}