mirror of
https://github.com/mirror/processhacker
synced 2026-06-08 16:03:24 +00:00
b02427417c
git-svn-id: svn://svn.code.sf.net/p/processhacker/code@5614 21ef857c-d57f-4fe0-8362-d861dc6d29cd
138 lines
5.6 KiB
C#
138 lines
5.6 KiB
C#
namespace ProcessHacker.Components
|
|
{
|
|
partial class NetworkList
|
|
{
|
|
/// <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();
|
|
}
|
|
|
|
_highlightingContext.Dispose();
|
|
this.Provider = null;
|
|
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Component 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();
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(NetworkList));
|
|
this.listNetwork = new System.Windows.Forms.ListView();
|
|
this.columnProcess = new System.Windows.Forms.ColumnHeader();
|
|
this.columnLocal = new System.Windows.Forms.ColumnHeader();
|
|
this.columnLocalPort = new System.Windows.Forms.ColumnHeader();
|
|
this.columnRemote = new System.Windows.Forms.ColumnHeader();
|
|
this.columnRemotePort = new System.Windows.Forms.ColumnHeader();
|
|
this.columnProtocol = new System.Windows.Forms.ColumnHeader();
|
|
this.columnState = new System.Windows.Forms.ColumnHeader();
|
|
this.imageList = new System.Windows.Forms.ImageList(this.components);
|
|
this.SuspendLayout();
|
|
//
|
|
// listNetwork
|
|
//
|
|
this.listNetwork.AllowColumnReorder = true;
|
|
this.listNetwork.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
|
this.columnProcess,
|
|
this.columnLocal,
|
|
this.columnLocalPort,
|
|
this.columnRemote,
|
|
this.columnRemotePort,
|
|
this.columnProtocol,
|
|
this.columnState});
|
|
this.listNetwork.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.listNetwork.FullRowSelect = true;
|
|
this.listNetwork.HideSelection = false;
|
|
this.listNetwork.Location = new System.Drawing.Point(0, 0);
|
|
this.listNetwork.Name = "listNetwork";
|
|
this.listNetwork.ShowItemToolTips = true;
|
|
this.listNetwork.Size = new System.Drawing.Size(685, 472);
|
|
this.listNetwork.SmallImageList = this.imageList;
|
|
this.listNetwork.Sorting = System.Windows.Forms.SortOrder.Ascending;
|
|
this.listNetwork.TabIndex = 1;
|
|
this.listNetwork.UseCompatibleStateImageBehavior = false;
|
|
this.listNetwork.View = System.Windows.Forms.View.Details;
|
|
//
|
|
// columnProcess
|
|
//
|
|
this.columnProcess.Text = "Process";
|
|
this.columnProcess.Width = 137;
|
|
//
|
|
// columnLocal
|
|
//
|
|
this.columnLocal.Text = "Local Address";
|
|
this.columnLocal.Width = 130;
|
|
//
|
|
// columnLocalPort
|
|
//
|
|
this.columnLocalPort.Text = "Local Port";
|
|
this.columnLocalPort.Width = 52;
|
|
//
|
|
// columnRemote
|
|
//
|
|
this.columnRemote.Text = "Remote Address";
|
|
this.columnRemote.Width = 140;
|
|
//
|
|
// columnRemotePort
|
|
//
|
|
this.columnRemotePort.Text = "Remote Port";
|
|
this.columnRemotePort.Width = 52;
|
|
//
|
|
// columnProtocol
|
|
//
|
|
this.columnProtocol.Text = "Protocol";
|
|
this.columnProtocol.Width = 80;
|
|
//
|
|
// columnState
|
|
//
|
|
this.columnState.Text = "State";
|
|
this.columnState.Width = 70;
|
|
//
|
|
// imageList
|
|
//
|
|
this.imageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList.ImageStream")));
|
|
this.imageList.TransparentColor = System.Drawing.Color.Transparent;
|
|
this.imageList.Images.SetKeyName(0, "generic_process");
|
|
//
|
|
// NetworkList
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.Controls.Add(this.listNetwork);
|
|
this.DoubleBuffered = true;
|
|
this.Name = "NetworkList";
|
|
this.Size = new System.Drawing.Size(685, 472);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.ListView listNetwork;
|
|
private System.Windows.Forms.ColumnHeader columnLocal;
|
|
private System.Windows.Forms.ColumnHeader columnRemote;
|
|
private System.Windows.Forms.ColumnHeader columnRemotePort;
|
|
private System.Windows.Forms.ColumnHeader columnProtocol;
|
|
private System.Windows.Forms.ColumnHeader columnProcess;
|
|
private System.Windows.Forms.ImageList imageList;
|
|
private System.Windows.Forms.ColumnHeader columnLocalPort;
|
|
private System.Windows.Forms.ColumnHeader columnState;
|
|
}
|
|
}
|