mirror of
https://github.com/mirror/processhacker
synced 2026-06-08 16:03:24 +00:00
23e974deb5
git-svn-id: svn://svn.code.sf.net/p/processhacker/code@406 21ef857c-d57f-4fe0-8362-d861dc6d29cd
108 lines
4.2 KiB
C#
108 lines
4.2 KiB
C#
namespace ProcessHacker
|
|
{
|
|
partial class ModuleList
|
|
{
|
|
/// <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.components = new System.ComponentModel.Container();
|
|
this.listModules = new System.Windows.Forms.ListView();
|
|
this.columnName = new System.Windows.Forms.ColumnHeader();
|
|
this.columnBaseAddress = new System.Windows.Forms.ColumnHeader();
|
|
this.columnSize = new System.Windows.Forms.ColumnHeader();
|
|
this.columnDesc = new System.Windows.Forms.ColumnHeader();
|
|
this.vistaMenu = new wyDay.Controls.VistaMenu(this.components);
|
|
((System.ComponentModel.ISupportInitialize)(this.vistaMenu)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// listModules
|
|
//
|
|
this.listModules.AllowColumnReorder = true;
|
|
this.listModules.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
|
this.columnName,
|
|
this.columnBaseAddress,
|
|
this.columnSize,
|
|
this.columnDesc});
|
|
this.listModules.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.listModules.FullRowSelect = true;
|
|
this.listModules.HideSelection = false;
|
|
this.listModules.Location = new System.Drawing.Point(0, 0);
|
|
this.listModules.Name = "listModules";
|
|
this.listModules.ShowItemToolTips = true;
|
|
this.listModules.Size = new System.Drawing.Size(450, 472);
|
|
this.listModules.Sorting = System.Windows.Forms.SortOrder.Ascending;
|
|
this.listModules.TabIndex = 3;
|
|
this.listModules.UseCompatibleStateImageBehavior = false;
|
|
this.listModules.View = System.Windows.Forms.View.Details;
|
|
//
|
|
// columnName
|
|
//
|
|
this.columnName.Text = "Name";
|
|
this.columnName.Width = 100;
|
|
//
|
|
// columnBaseAddress
|
|
//
|
|
this.columnBaseAddress.Text = "Base Address";
|
|
this.columnBaseAddress.Width = 80;
|
|
//
|
|
// columnSize
|
|
//
|
|
this.columnSize.Text = "Size";
|
|
this.columnSize.Width = 70;
|
|
//
|
|
// columnDesc
|
|
//
|
|
this.columnDesc.Text = "Description";
|
|
this.columnDesc.Width = 200;
|
|
//
|
|
// vistaMenu
|
|
//
|
|
this.vistaMenu.ContainerControl = this;
|
|
//
|
|
// ModuleList
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.Controls.Add(this.listModules);
|
|
this.DoubleBuffered = true;
|
|
this.Name = "ModuleList";
|
|
this.Size = new System.Drawing.Size(450, 472);
|
|
((System.ComponentModel.ISupportInitialize)(this.vistaMenu)).EndInit();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.ListView listModules;
|
|
private System.Windows.Forms.ColumnHeader columnBaseAddress;
|
|
private System.Windows.Forms.ColumnHeader columnName;
|
|
private System.Windows.Forms.ColumnHeader columnSize;
|
|
private System.Windows.Forms.ColumnHeader columnDesc;
|
|
private wyDay.Controls.VistaMenu vistaMenu;
|
|
}
|
|
}
|