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
97 lines
4.4 KiB
C#
97 lines
4.4 KiB
C#
namespace ProcessHacker
|
|
{
|
|
partial class ScratchpadWindow
|
|
{
|
|
/// <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()
|
|
{
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ScratchpadWindow));
|
|
this.textText = new System.Windows.Forms.TextBox();
|
|
this.buttonCopy = new System.Windows.Forms.Button();
|
|
this.buttonSave = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// textText
|
|
//
|
|
this.textText.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.textText.Location = new System.Drawing.Point(12, 12);
|
|
this.textText.Multiline = true;
|
|
this.textText.Name = "textText";
|
|
this.textText.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
|
|
this.textText.Size = new System.Drawing.Size(530, 305);
|
|
this.textText.TabIndex = 0;
|
|
//
|
|
// 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(467, 323);
|
|
this.buttonCopy.Name = "buttonCopy";
|
|
this.buttonCopy.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonCopy.TabIndex = 2;
|
|
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(386, 323);
|
|
this.buttonSave.Name = "buttonSave";
|
|
this.buttonSave.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonSave.TabIndex = 1;
|
|
this.buttonSave.Text = "Save...";
|
|
this.buttonSave.UseVisualStyleBackColor = true;
|
|
this.buttonSave.Click += new System.EventHandler(this.buttonSave_Click);
|
|
//
|
|
// ScratchpadWindow
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(554, 358);
|
|
this.Controls.Add(this.buttonSave);
|
|
this.Controls.Add(this.buttonCopy);
|
|
this.Controls.Add(this.textText);
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.KeyPreview = true;
|
|
this.Name = "ScratchpadWindow";
|
|
this.Text = "Scratchpad";
|
|
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ScratchpadWindow_KeyDown);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.TextBox textText;
|
|
private System.Windows.Forms.Button buttonCopy;
|
|
private System.Windows.Forms.Button buttonSave;
|
|
}
|
|
} |