namespace DragAndDropSample { partial class MainForm { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// 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.dropTargetTextBox = new System.Windows.Forms.TextBox(); this.label1 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.dragSourceLabel = new System.Windows.Forms.Label(); this.SuspendLayout(); // // dropTargetTextBox // this.dropTargetTextBox.AllowDrop = true; this.dropTargetTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.dropTargetTextBox.Location = new System.Drawing.Point(86, 40); this.dropTargetTextBox.Name = "dropTargetTextBox"; this.dropTargetTextBox.Size = new System.Drawing.Size(143, 20); this.dropTargetTextBox.TabIndex = 3; this.dropTargetTextBox.DragOver += new System.Windows.Forms.DragEventHandler(this.dropTargetTextBox_DragOver); this.dropTargetTextBox.DragDrop += new System.Windows.Forms.DragEventHandler(this.dropTargetTextBox_DragDrop); this.dropTargetTextBox.DragEnter += new System.Windows.Forms.DragEventHandler(this.dropTargetTextBox_DragEnter); // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(8, 43); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(67, 13); this.label1.TabIndex = 2; this.label1.Text = "Drag Target:"; // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(8, 16); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(70, 13); this.label2.TabIndex = 0; this.label2.Text = "Drag Source:"; // // dragSourceLabel // this.dragSourceLabel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.dragSourceLabel.AutoSize = true; this.dragSourceLabel.Location = new System.Drawing.Point(86, 16); this.dragSourceLabel.Name = "dragSourceLabel"; this.dragSourceLabel.Size = new System.Drawing.Size(93, 13); this.dragSourceLabel.TabIndex = 4; this.dragSourceLabel.Text = "Drag Source Data"; this.dragSourceLabel.QueryContinueDrag += new System.Windows.Forms.QueryContinueDragEventHandler(this.dragSourceLabel_QueryContinueDrag); this.dragSourceLabel.MouseDown += new System.Windows.Forms.MouseEventHandler(this.dragSourceLabel_MouseDown); this.dragSourceLabel.GiveFeedback += new System.Windows.Forms.GiveFeedbackEventHandler(this.dragSourceLabel_GiveFeedback); // // MainForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(241, 73); this.Controls.Add(this.dragSourceLabel); this.Controls.Add(this.label2); this.Controls.Add(this.label1); this.Controls.Add(this.dropTargetTextBox); this.Name = "MainForm"; this.Text = "Drag and Drop Sample"; this.Load += new System.EventHandler(this.DragAndDropSampleForm_Load); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.TextBox dropTargetTextBox; private System.Windows.Forms.Label label1; private System.Windows.Forms.Label label2; private System.Windows.Forms.Label dragSourceLabel; } }