namespace Oli.Controls.Tests
{
partial class TestDragDropListBox
{
///
/// 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 Component Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.lblBehavoir1 = new System.Windows.Forms.Label();
this.chkSorted = new System.Windows.Forms.CheckBox();
this.lblSelectionMode1 = new System.Windows.Forms.Label();
this.cboSelectionMode = new System.Windows.Forms.ComboBox();
this.btnSelectEven = new System.Windows.Forms.Button();
this.txtGroup = new System.Windows.Forms.TextBox();
this.lblGroup1 = new System.Windows.Forms.Label();
this.chkMoveSource = new System.Windows.Forms.CheckBox();
this.chkCopySource = new System.Windows.Forms.CheckBox();
this.chkAllowReorder = new System.Windows.Forms.CheckBox();
this.chkDropTraget = new System.Windows.Forms.CheckBox();
this.dragDropListBoxBindingSource = new System.Windows.Forms.BindingSource(this.components);
this.dragDropListBox = new Oli.Controls.DragDropListBox();
((System.ComponentModel.ISupportInitialize)(this.dragDropListBoxBindingSource)).BeginInit();
this.SuspendLayout();
//
// lblBehavoir1
//
this.lblBehavoir1.AutoSize = true;
this.lblBehavoir1.Location = new System.Drawing.Point(3, 2);
this.lblBehavoir1.Name = "lblBehavoir1";
this.lblBehavoir1.Size = new System.Drawing.Size(52, 13);
this.lblBehavoir1.TabIndex = 32;
this.lblBehavoir1.Text = "Behavoir:";
//
// chkSorted
//
this.chkSorted.AutoSize = true;
this.chkSorted.Location = new System.Drawing.Point(93, 154);
this.chkSorted.Name = "chkSorted";
this.chkSorted.Size = new System.Drawing.Size(57, 17);
this.chkSorted.TabIndex = 31;
this.chkSorted.Text = "Sorted";
this.chkSorted.UseVisualStyleBackColor = true;
this.chkSorted.CheckedChanged += new System.EventHandler(this.chkSorted_CheckedChanged);
//
// lblSelectionMode1
//
this.lblSelectionMode1.AutoSize = true;
this.lblSelectionMode1.Location = new System.Drawing.Point(3, 130);
this.lblSelectionMode1.Name = "lblSelectionMode1";
this.lblSelectionMode1.Size = new System.Drawing.Size(84, 13);
this.lblSelectionMode1.TabIndex = 30;
this.lblSelectionMode1.Text = "Selection Mode:";
//
// cboSelectionMode
//
this.cboSelectionMode.FormattingEnabled = true;
this.cboSelectionMode.Location = new System.Drawing.Point(93, 127);
this.cboSelectionMode.Name = "cboSelectionMode";
this.cboSelectionMode.Size = new System.Drawing.Size(101, 21);
this.cboSelectionMode.TabIndex = 29;
this.cboSelectionMode.SelectedIndexChanged += new System.EventHandler(this.cboSelectionMode_SelectedIndexChanged);
//
// btnSelectEven
//
this.btnSelectEven.Location = new System.Drawing.Point(93, 177);
this.btnSelectEven.Name = "btnSelectEven";
this.btnSelectEven.Size = new System.Drawing.Size(101, 23);
this.btnSelectEven.TabIndex = 28;
this.btnSelectEven.Text = "Select Even Items";
this.btnSelectEven.UseVisualStyleBackColor = true;
this.btnSelectEven.Click += new System.EventHandler(this.btnSelectEven_Click);
//
// txtGroup
//
this.txtGroup.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.dragDropListBoxBindingSource, "DragDropGroup", true));
this.txtGroup.Location = new System.Drawing.Point(93, 92);
this.txtGroup.Name = "txtGroup";
this.txtGroup.Size = new System.Drawing.Size(101, 20);
this.txtGroup.TabIndex = 27;
//
// lblGroup1
//
this.lblGroup1.AutoSize = true;
this.lblGroup1.Location = new System.Drawing.Point(3, 96);
this.lblGroup1.Name = "lblGroup1";
this.lblGroup1.Size = new System.Drawing.Size(91, 13);
this.lblGroup1.TabIndex = 26;
this.lblGroup1.Text = "Drag Drop Group:";
//
// chkMoveSource
//
this.chkMoveSource.AutoSize = true;
this.chkMoveSource.Checked = true;
this.chkMoveSource.CheckState = System.Windows.Forms.CheckState.Checked;
this.chkMoveSource.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.dragDropListBoxBindingSource, "IsDragDropMoveSource", true));
this.chkMoveSource.Location = new System.Drawing.Point(93, 69);
this.chkMoveSource.Name = "chkMoveSource";
this.chkMoveSource.Size = new System.Drawing.Size(101, 17);
this.chkMoveSource.TabIndex = 25;
this.chkMoveSource.Text = "Is Move Source";
this.chkMoveSource.UseVisualStyleBackColor = true;
//
// chkCopySource
//
this.chkCopySource.AutoSize = true;
this.chkCopySource.Checked = true;
this.chkCopySource.CheckState = System.Windows.Forms.CheckState.Checked;
this.chkCopySource.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.dragDropListBoxBindingSource, "IsDragDropCopySource", true));
this.chkCopySource.Location = new System.Drawing.Point(93, 46);
this.chkCopySource.Name = "chkCopySource";
this.chkCopySource.Size = new System.Drawing.Size(98, 17);
this.chkCopySource.TabIndex = 24;
this.chkCopySource.Text = "Is Copy Source";
this.chkCopySource.UseVisualStyleBackColor = true;
//
// chkAllowReorder
//
this.chkAllowReorder.AutoSize = true;
this.chkAllowReorder.Checked = true;
this.chkAllowReorder.CheckState = System.Windows.Forms.CheckState.Checked;
this.chkAllowReorder.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.dragDropListBoxBindingSource, "AllowReorder", true));
this.chkAllowReorder.Location = new System.Drawing.Point(93, 23);
this.chkAllowReorder.Name = "chkAllowReorder";
this.chkAllowReorder.Size = new System.Drawing.Size(92, 17);
this.chkAllowReorder.TabIndex = 23;
this.chkAllowReorder.Text = "Allow Reorder";
this.chkAllowReorder.UseVisualStyleBackColor = true;
//
// chkDropTraget
//
this.chkDropTraget.AutoSize = true;
this.chkDropTraget.Checked = true;
this.chkDropTraget.CheckState = System.Windows.Forms.CheckState.Checked;
this.chkDropTraget.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.dragDropListBoxBindingSource, "IsDragDropTarget", true));
this.chkDropTraget.Location = new System.Drawing.Point(93, 1);
this.chkDropTraget.Name = "chkDropTraget";
this.chkDropTraget.Size = new System.Drawing.Size(94, 17);
this.chkDropTraget.TabIndex = 22;
this.chkDropTraget.Text = "Is Drop Target";
this.chkDropTraget.UseVisualStyleBackColor = true;
//
// dragDropListBoxBindingSource
//
this.dragDropListBoxBindingSource.DataSource = typeof(Oli.Controls.DragDropListBox);
//
// dragDropListBox
//
this.dragDropListBox.AllowDrop = true;
this.dragDropListBox.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.dragDropListBox.FormattingEnabled = true;
this.dragDropListBox.Location = new System.Drawing.Point(200, 1);
this.dragDropListBox.Name = "dragDropListBox";
this.dragDropListBox.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended;
this.dragDropListBox.Size = new System.Drawing.Size(122, 238);
this.dragDropListBox.TabIndex = 21;
//
// TestDragDropListBox
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.lblBehavoir1);
this.Controls.Add(this.chkSorted);
this.Controls.Add(this.lblSelectionMode1);
this.Controls.Add(this.cboSelectionMode);
this.Controls.Add(this.btnSelectEven);
this.Controls.Add(this.txtGroup);
this.Controls.Add(this.lblGroup1);
this.Controls.Add(this.chkMoveSource);
this.Controls.Add(this.chkCopySource);
this.Controls.Add(this.chkAllowReorder);
this.Controls.Add(this.chkDropTraget);
this.Controls.Add(this.dragDropListBox);
this.Name = "TestDragDropListBox";
this.Size = new System.Drawing.Size(324, 241);
((System.ComponentModel.ISupportInitialize)(this.dragDropListBoxBindingSource)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label lblBehavoir1;
private System.Windows.Forms.CheckBox chkSorted;
private System.Windows.Forms.Label lblSelectionMode1;
private System.Windows.Forms.ComboBox cboSelectionMode;
private System.Windows.Forms.Button btnSelectEven;
private System.Windows.Forms.TextBox txtGroup;
private System.Windows.Forms.Label lblGroup1;
private System.Windows.Forms.CheckBox chkMoveSource;
private System.Windows.Forms.CheckBox chkCopySource;
private System.Windows.Forms.CheckBox chkAllowReorder;
private System.Windows.Forms.CheckBox chkDropTraget;
private DragDropListBox dragDropListBox;
private System.Windows.Forms.BindingSource dragDropListBoxBindingSource;
}
}