namespace ClipboardTextBoxExample { partial class Form1 { /// /// 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() { this.label1 = new System.Windows.Forms.Label(); this.label3 = new System.Windows.Forms.Label(); this.linkLabel1 = new System.Windows.Forms.LinkLabel(); this.txtPaste = new ClipboardTextBoxExample.ClipboardTextBox(); this.txtCopy = new ClipboardTextBoxExample.ClipboardTextBox(); this.txtCut = new ClipboardTextBoxExample.ClipboardTextBox(); this.SuspendLayout(); // // // label3 // this.label3.AutoSize = true; this.label3.Location = new System.Drawing.Point(25, 118); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(124, 13); this.label3.TabIndex = 6; this.label3.Text = "Detect Paste only if 0/1"; // // // txtPaste // this.txtPaste.Location = new System.Drawing.Point(28, 141); this.txtPaste.Name = "txtPaste"; this.txtPaste.Size = new System.Drawing.Size(120, 22); this.txtPaste.TabIndex = 2; this.txtPaste.Text = "Paste Here"; this.txtPaste.PastedText += new ClipboardTextBoxExample.ClipboardTextBox.ClipboardEventHandler(this.txtPaste_PastedText); // // txtCopy // this.txtCopy.Location = new System.Drawing.Point(0, 0); this.txtCopy.Name = "txtCopy"; this.txtCopy.Size = new System.Drawing.Size(100, 22); this.txtCopy.TabIndex = 17; // // txtCut // this.txtCut.Location = new System.Drawing.Point(0, 0); this.txtCut.Name = "txtCut"; this.txtCut.Size = new System.Drawing.Size(100, 22); this.txtCut.TabIndex = 18; // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(359, 349); this.Controls.Add(this.linkLabel1); this.Controls.Add(this.label3); this.Controls.Add(this.label1); this.Controls.Add(this.txtPaste); this.Controls.Add(this.txtCopy); this.Controls.Add(this.txtCut); this.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; this.MaximizeBox = false; this.Name = "Form1"; this.Text = "Clipboard Textbox Example"; this.Load += new System.EventHandler(this.Form1_Load); this.ResumeLayout(false); this.PerformLayout(); } #endregion private ClipboardTextBox txtCut; private ClipboardTextBox txtCopy; private ClipboardTextBox txtPaste; private System.Windows.Forms.Label label1; private System.Windows.Forms.Label label3; private System.Windows.Forms.LinkLabel linkLabel1; } }