mirror of
https://github.com/mirror/processhacker
synced 2026-06-08 16:03:24 +00:00
40e736cd63
* new reference counting system for handles, memory allocations and symbol provider * added terminal server objects (server, session, process) * proper SID class * moved logging into ProcessHacker.Common git-svn-id: svn://svn.code.sf.net/p/processhacker/code@1382 21ef857c-d57f-4fe0-8362-d861dc6d29cd
79 lines
3.0 KiB
C#
79 lines
3.0 KiB
C#
namespace ProcessHacker.Components
|
|
{
|
|
partial class EventPairProperties
|
|
{
|
|
/// <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();
|
|
}
|
|
|
|
_eventPairHandle.Dereference(disposing);
|
|
|
|
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.buttonSetHigh = new System.Windows.Forms.Button();
|
|
this.buttonSetLow = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// buttonSetHigh
|
|
//
|
|
this.buttonSetHigh.FlatStyle = System.Windows.Forms.FlatStyle.System;
|
|
this.buttonSetHigh.Location = new System.Drawing.Point(6, 6);
|
|
this.buttonSetHigh.Name = "buttonSetHigh";
|
|
this.buttonSetHigh.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonSetHigh.TabIndex = 0;
|
|
this.buttonSetHigh.Text = "Set High";
|
|
this.buttonSetHigh.UseVisualStyleBackColor = true;
|
|
this.buttonSetHigh.Click += new System.EventHandler(this.buttonSetHigh_Click);
|
|
//
|
|
// buttonSetLow
|
|
//
|
|
this.buttonSetLow.FlatStyle = System.Windows.Forms.FlatStyle.System;
|
|
this.buttonSetLow.Location = new System.Drawing.Point(87, 6);
|
|
this.buttonSetLow.Name = "buttonSetLow";
|
|
this.buttonSetLow.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonSetLow.TabIndex = 0;
|
|
this.buttonSetLow.Text = "Set Low";
|
|
this.buttonSetLow.UseVisualStyleBackColor = true;
|
|
this.buttonSetLow.Click += new System.EventHandler(this.buttonSetLow_Click);
|
|
//
|
|
// EventPairProperties
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.Controls.Add(this.buttonSetLow);
|
|
this.Controls.Add(this.buttonSetHigh);
|
|
this.Name = "EventPairProperties";
|
|
this.Padding = new System.Windows.Forms.Padding(3);
|
|
this.Size = new System.Drawing.Size(212, 63);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Button buttonSetHigh;
|
|
private System.Windows.Forms.Button buttonSetLow;
|
|
}
|
|
}
|