Files
mirror-processhacker/trunk/ProcessHacker/Components/NetworkList.Designer.cs
T
wj32 6c446c35dc 1.3.2.0
* NEW:
   * Network tab - shows current network connections
 * FIXED:
   * Now the process tree and service list update instantly after 
     starting Process Hacker instead of waiting

git-svn-id: svn://svn.code.sf.net/p/processhacker/code@513 21ef857c-d57f-4fe0-8362-d861dc6d29cd
2009-01-16 22:57:11 +00:00

98 lines
3.7 KiB
C#

namespace ProcessHacker
{
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();
}
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.listNetwork = new System.Windows.Forms.ListView();
this.columnLocal = new System.Windows.Forms.ColumnHeader();
this.columnRemote = new System.Windows.Forms.ColumnHeader();
this.columnProtocol = new System.Windows.Forms.ColumnHeader();
this.columnState = new System.Windows.Forms.ColumnHeader();
this.SuspendLayout();
//
// listNetwork
//
this.listNetwork.AllowColumnReorder = true;
this.listNetwork.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnLocal,
this.columnRemote,
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.Sorting = System.Windows.Forms.SortOrder.Ascending;
this.listNetwork.TabIndex = 1;
this.listNetwork.UseCompatibleStateImageBehavior = false;
this.listNetwork.View = System.Windows.Forms.View.Details;
//
// columnLocal
//
this.columnLocal.Text = "Local";
this.columnLocal.Width = 180;
//
// columnRemote
//
this.columnRemote.Text = "Remote";
this.columnRemote.Width = 220;
//
// columnProtocol
//
this.columnProtocol.Text = "Protocol";
//
// columnState
//
this.columnState.Text = "State";
this.columnState.Width = 100;
//
// 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 columnProtocol;
private System.Windows.Forms.ColumnHeader columnState;
}
}