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
175 lines
8.7 KiB
C#
175 lines
8.7 KiB
C#
namespace ProcessHacker
|
|
{
|
|
partial class LogWindow
|
|
{
|
|
/// <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();
|
|
this.listLog = new System.Windows.Forms.ListView();
|
|
this.columnTime = new System.Windows.Forms.ColumnHeader();
|
|
this.columnMessage = new System.Windows.Forms.ColumnHeader();
|
|
this.buttonClose = new System.Windows.Forms.Button();
|
|
this.timerScroll = new System.Windows.Forms.Timer(this.components);
|
|
this.buttonCopy = new System.Windows.Forms.Button();
|
|
this.buttonSave = new System.Windows.Forms.Button();
|
|
this.buttonClear = new System.Windows.Forms.Button();
|
|
this.checkAutoscroll = new System.Windows.Forms.CheckBox();
|
|
this.SuspendLayout();
|
|
//
|
|
// listLog
|
|
//
|
|
this.listLog.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
|
| System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.listLog.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
|
this.columnTime,
|
|
this.columnMessage});
|
|
this.listLog.FullRowSelect = true;
|
|
this.listLog.HideSelection = false;
|
|
this.listLog.Location = new System.Drawing.Point(12, 12);
|
|
this.listLog.Name = "listLog";
|
|
this.listLog.ShowItemToolTips = true;
|
|
this.listLog.Size = new System.Drawing.Size(555, 419);
|
|
this.listLog.TabIndex = 0;
|
|
this.listLog.UseCompatibleStateImageBehavior = false;
|
|
this.listLog.View = System.Windows.Forms.View.Details;
|
|
this.listLog.VirtualMode = true;
|
|
this.listLog.DoubleClick += new System.EventHandler(this.listLog_DoubleClick);
|
|
this.listLog.RetrieveVirtualItem += new System.Windows.Forms.RetrieveVirtualItemEventHandler(this.listLog_RetrieveVirtualItem);
|
|
//
|
|
// columnTime
|
|
//
|
|
this.columnTime.Text = "Time";
|
|
this.columnTime.Width = 130;
|
|
//
|
|
// columnMessage
|
|
//
|
|
this.columnMessage.Text = "Message";
|
|
this.columnMessage.Width = 400;
|
|
//
|
|
// buttonClose
|
|
//
|
|
this.buttonClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.buttonClose.FlatStyle = System.Windows.Forms.FlatStyle.System;
|
|
this.buttonClose.Location = new System.Drawing.Point(492, 437);
|
|
this.buttonClose.Name = "buttonClose";
|
|
this.buttonClose.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonClose.TabIndex = 5;
|
|
this.buttonClose.Text = "Close";
|
|
this.buttonClose.UseVisualStyleBackColor = true;
|
|
this.buttonClose.Click += new System.EventHandler(this.buttonClose_Click);
|
|
//
|
|
// timerScroll
|
|
//
|
|
this.timerScroll.Enabled = true;
|
|
this.timerScroll.Interval = 1000;
|
|
this.timerScroll.Tick += new System.EventHandler(this.timerScroll_Tick);
|
|
//
|
|
// buttonCopy
|
|
//
|
|
this.buttonCopy.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.buttonCopy.FlatStyle = System.Windows.Forms.FlatStyle.System;
|
|
this.buttonCopy.Location = new System.Drawing.Point(411, 437);
|
|
this.buttonCopy.Name = "buttonCopy";
|
|
this.buttonCopy.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonCopy.TabIndex = 4;
|
|
this.buttonCopy.Text = "Copy";
|
|
this.buttonCopy.UseVisualStyleBackColor = true;
|
|
this.buttonCopy.Click += new System.EventHandler(this.buttonCopy_Click);
|
|
//
|
|
// buttonSave
|
|
//
|
|
this.buttonSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.buttonSave.FlatStyle = System.Windows.Forms.FlatStyle.System;
|
|
this.buttonSave.Location = new System.Drawing.Point(330, 437);
|
|
this.buttonSave.Name = "buttonSave";
|
|
this.buttonSave.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonSave.TabIndex = 3;
|
|
this.buttonSave.Text = "Save...";
|
|
this.buttonSave.UseVisualStyleBackColor = true;
|
|
this.buttonSave.Click += new System.EventHandler(this.buttonSave_Click);
|
|
//
|
|
// buttonClear
|
|
//
|
|
this.buttonClear.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.buttonClear.FlatStyle = System.Windows.Forms.FlatStyle.System;
|
|
this.buttonClear.Location = new System.Drawing.Point(12, 437);
|
|
this.buttonClear.Name = "buttonClear";
|
|
this.buttonClear.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonClear.TabIndex = 1;
|
|
this.buttonClear.Text = "Clear";
|
|
this.buttonClear.UseVisualStyleBackColor = true;
|
|
this.buttonClear.Click += new System.EventHandler(this.buttonClear_Click);
|
|
//
|
|
// checkAutoscroll
|
|
//
|
|
this.checkAutoscroll.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.checkAutoscroll.AutoSize = true;
|
|
this.checkAutoscroll.Checked = true;
|
|
this.checkAutoscroll.CheckState = System.Windows.Forms.CheckState.Checked;
|
|
this.checkAutoscroll.FlatStyle = System.Windows.Forms.FlatStyle.System;
|
|
this.checkAutoscroll.Location = new System.Drawing.Point(93, 440);
|
|
this.checkAutoscroll.Name = "checkAutoscroll";
|
|
this.checkAutoscroll.Size = new System.Drawing.Size(81, 18);
|
|
this.checkAutoscroll.TabIndex = 2;
|
|
this.checkAutoscroll.Text = "Auto-scroll";
|
|
this.checkAutoscroll.UseVisualStyleBackColor = true;
|
|
//
|
|
// LogWindow
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(579, 472);
|
|
this.Controls.Add(this.checkAutoscroll);
|
|
this.Controls.Add(this.buttonClear);
|
|
this.Controls.Add(this.buttonSave);
|
|
this.Controls.Add(this.buttonCopy);
|
|
this.Controls.Add(this.buttonClose);
|
|
this.Controls.Add(this.listLog);
|
|
this.Name = "LogWindow";
|
|
this.ShowIcon = false;
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
|
|
this.Text = "Log";
|
|
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.LogWindow_FormClosing);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.ListView listLog;
|
|
private System.Windows.Forms.ColumnHeader columnTime;
|
|
private System.Windows.Forms.ColumnHeader columnMessage;
|
|
private System.Windows.Forms.Button buttonClose;
|
|
private System.Windows.Forms.Timer timerScroll;
|
|
private System.Windows.Forms.Button buttonCopy;
|
|
private System.Windows.Forms.Button buttonSave;
|
|
private System.Windows.Forms.Button buttonClear;
|
|
private System.Windows.Forms.CheckBox checkAutoscroll;
|
|
}
|
|
} |