namespace ProcessHacker { partial class ScratchpadWindow { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// 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; } }