namespace Oli.Controls.ConvertFilesExample { partial class frmTestFileDrop { /// /// 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.dragDropListBox1 = new Oli.Controls.DragDropListBox(); this.label1 = new System.Windows.Forms.Label(); this.SuspendLayout(); // // dragDropListBox1 // this.dragDropListBox1.AllowDrop = true; this.dragDropListBox1.DragDropGroup = "Files"; this.dragDropListBox1.FormattingEnabled = true; this.dragDropListBox1.IsDragDropCopySource = false; this.dragDropListBox1.IsDragDropMoveSource = false; this.dragDropListBox1.Location = new System.Drawing.Point(12, 12); this.dragDropListBox1.Name = "dragDropListBox1"; this.dragDropListBox1.Size = new System.Drawing.Size(260, 355); this.dragDropListBox1.TabIndex = 0; // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(9, 370); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(179, 13); this.label1.TabIndex = 1; this.label1.Text = "Please drop some files in the list box."; // // frmTestFileDrop // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(284, 392); this.Controls.Add(this.label1); this.Controls.Add(this.dragDropListBox1); this.Name = "frmTestFileDrop"; this.Text = "frmTestFileDrop"; this.ResumeLayout(false); this.PerformLayout(); } #endregion private DragDropListBox dragDropListBox1; private System.Windows.Forms.Label label1; } }