Quasar/Server/Forms/FrmTaskManager.Designer.cs

192 lines
9.8 KiB
C#

using xServer.Controls;
namespace xServer.Forms
{
partial class FrmTaskManager
{
/// <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();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmTaskManager));
this.contextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
this.killProcessToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.startProcessToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.lineToolStripMenuItem = new System.Windows.Forms.ToolStripSeparator();
this.refreshToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.tableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
this.lstTasks = new xServer.Controls.AeroListView();
this.hProcessname = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.hPID = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.hTitle = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.statusStrip = new System.Windows.Forms.StatusStrip();
this.processesToolStripStatusLabel = new System.Windows.Forms.ToolStripStatusLabel();
this.contextMenuStrip.SuspendLayout();
this.tableLayoutPanel.SuspendLayout();
this.statusStrip.SuspendLayout();
this.SuspendLayout();
//
// contextMenuStrip
//
this.contextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.killProcessToolStripMenuItem,
this.startProcessToolStripMenuItem,
this.lineToolStripMenuItem,
this.refreshToolStripMenuItem});
this.contextMenuStrip.Name = "ctxtMenu";
this.contextMenuStrip.Size = new System.Drawing.Size(142, 76);
//
// killProcessToolStripMenuItem
//
this.killProcessToolStripMenuItem.Image = global::xServer.Properties.Resources.cancel;
this.killProcessToolStripMenuItem.Name = "killProcessToolStripMenuItem";
this.killProcessToolStripMenuItem.Size = new System.Drawing.Size(141, 22);
this.killProcessToolStripMenuItem.Text = "Kill Process";
this.killProcessToolStripMenuItem.Click += new System.EventHandler(this.killProcessToolStripMenuItem_Click);
//
// startProcessToolStripMenuItem
//
this.startProcessToolStripMenuItem.Image = global::xServer.Properties.Resources.run;
this.startProcessToolStripMenuItem.Name = "startProcessToolStripMenuItem";
this.startProcessToolStripMenuItem.Size = new System.Drawing.Size(141, 22);
this.startProcessToolStripMenuItem.Text = "Start Process";
this.startProcessToolStripMenuItem.Click += new System.EventHandler(this.startProcessToolStripMenuItem_Click);
//
// lineToolStripMenuItem
//
this.lineToolStripMenuItem.Name = "lineToolStripMenuItem";
this.lineToolStripMenuItem.Size = new System.Drawing.Size(138, 6);
//
// refreshToolStripMenuItem
//
this.refreshToolStripMenuItem.Image = global::xServer.Properties.Resources.refresh;
this.refreshToolStripMenuItem.Name = "refreshToolStripMenuItem";
this.refreshToolStripMenuItem.Size = new System.Drawing.Size(141, 22);
this.refreshToolStripMenuItem.Text = "Refresh";
this.refreshToolStripMenuItem.Click += new System.EventHandler(this.refreshToolStripMenuItem_Click);
//
// tableLayoutPanel
//
this.tableLayoutPanel.ColumnCount = 1;
this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel.Controls.Add(this.lstTasks, 0, 0);
this.tableLayoutPanel.Controls.Add(this.statusStrip, 0, 1);
this.tableLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel.Location = new System.Drawing.Point(0, 0);
this.tableLayoutPanel.Name = "tableLayoutPanel";
this.tableLayoutPanel.RowCount = 2;
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 22F));
this.tableLayoutPanel.Size = new System.Drawing.Size(821, 493);
this.tableLayoutPanel.TabIndex = 2;
//
// lstTasks
//
this.lstTasks.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.hProcessname,
this.hPID,
this.hTitle});
this.lstTasks.ContextMenuStrip = this.contextMenuStrip;
this.lstTasks.Dock = System.Windows.Forms.DockStyle.Fill;
this.lstTasks.FullRowSelect = true;
this.lstTasks.GridLines = true;
this.lstTasks.Location = new System.Drawing.Point(3, 3);
this.lstTasks.Name = "lstTasks";
this.lstTasks.Size = new System.Drawing.Size(815, 465);
this.lstTasks.TabIndex = 1;
this.lstTasks.UseCompatibleStateImageBehavior = false;
this.lstTasks.View = System.Windows.Forms.View.Details;
//
// hProcessname
//
this.hProcessname.Text = "Processname";
this.hProcessname.Width = 202;
//
// hPID
//
this.hPID.Text = "PID";
//
// hTitle
//
this.hTitle.Text = "Title";
this.hTitle.Width = 531;
//
// statusStrip
//
this.statusStrip.Dock = System.Windows.Forms.DockStyle.Fill;
this.statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.processesToolStripStatusLabel});
this.statusStrip.Location = new System.Drawing.Point(0, 471);
this.statusStrip.Name = "statusStrip";
this.statusStrip.Size = new System.Drawing.Size(821, 22);
this.statusStrip.TabIndex = 2;
this.statusStrip.Text = "statusStrip1";
//
// processesToolStripStatusLabel
//
this.processesToolStripStatusLabel.Name = "processesToolStripStatusLabel";
this.processesToolStripStatusLabel.Size = new System.Drawing.Size(70, 17);
this.processesToolStripStatusLabel.Text = "Processes: 0";
//
// FrmTaskManager
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(821, 493);
this.Controls.Add(this.tableLayoutPanel);
this.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MinimumSize = new System.Drawing.Size(351, 449);
this.Name = "FrmTaskManager";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Task Manager []";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FrmTaskManager_FormClosing);
this.Load += new System.EventHandler(this.FrmTaskManager_Load);
this.contextMenuStrip.ResumeLayout(false);
this.tableLayoutPanel.ResumeLayout(false);
this.tableLayoutPanel.PerformLayout();
this.statusStrip.ResumeLayout(false);
this.statusStrip.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.ContextMenuStrip contextMenuStrip;
private System.Windows.Forms.ToolStripMenuItem killProcessToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem refreshToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem startProcessToolStripMenuItem;
private System.Windows.Forms.ColumnHeader hProcessname;
private System.Windows.Forms.ColumnHeader hPID;
private System.Windows.Forms.ColumnHeader hTitle;
private System.Windows.Forms.ToolStripSeparator lineToolStripMenuItem;
private AeroListView lstTasks;
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel;
private System.Windows.Forms.StatusStrip statusStrip;
private System.Windows.Forms.ToolStripStatusLabel processesToolStripStatusLabel;
}
}