ToolStrip.AllowItemReorder Propiedad
Definición
public:
property bool AllowItemReorder { bool get(); void set(bool value); };
public bool AllowItemReorder { get; set; }
member this.AllowItemReorder : bool with get, set
Public Property AllowItemReorder As Boolean
Valor de propiedad
Es true
para que la clase ToolStrip controle automáticamente las operaciones de arrastrar y colocar, y la reordenación de elementos; en caso contrario, es false
.true
to cause the ToolStrip class to handle drag-and-drop and item reordering automatically; otherwise, false
. El valor predeterminado es false
.The default value is false
.
Excepciones
Tanto AllowDrop como AllowItemReorder se establecen en true
.AllowDrop and AllowItemReorder are both set to true
.
Ejemplos
En el ejemplo de código siguiente se muestra la sintaxis para establecer las propiedades de ToolStrip comunes, incluida la propiedad AllowItemReorder.The following code example demonstrates the syntax for setting common ToolStrip properties, including the AllowItemReorder property.
// This is an example of some common ToolStrip property settings.
//
toolStrip1.AllowDrop = false;
toolStrip1.AllowItemReorder = true;
toolStrip1.AllowMerge = false;
toolStrip1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
toolStrip1.AutoSize = false;
toolStrip1.CanOverflow = false;
toolStrip1.Cursor = System.Windows.Forms.Cursors.Cross;
toolStrip1.DefaultDropDownDirection = System.Windows.Forms.ToolStripDropDownDirection.BelowRight;
toolStrip1.Dock = System.Windows.Forms.DockStyle.None;
toolStrip1.GripMargin = new System.Windows.Forms.Padding(3);
toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
toolStripButton1});
toolStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
toolStrip1.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow;
toolStrip1.Location = new System.Drawing.Point(0, 0);
toolStrip1.Margin = new System.Windows.Forms.Padding(1);
toolStrip1.Name = "toolStrip1";
toolStrip1.Padding = new System.Windows.Forms.Padding(0, 0, 2, 0);
toolStrip1.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
toolStrip1.ShowItemToolTips = false;
toolStrip1.Size = new System.Drawing.Size(109, 273);
toolStrip1.Stretch = true;
toolStrip1.TabIndex = 0;
toolStrip1.TabStop = true;
toolStrip1.Text = "toolStrip1";
toolStrip1.TextDirection = System.Windows.Forms.ToolStripTextDirection.Vertical90;
' This is an example of some common ToolStrip property settings.
'
toolStrip1.AllowDrop = False
toolStrip1.AllowItemReorder = True
toolStrip1.AllowMerge = False
toolStrip1.Anchor = CType(System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left Or System.Windows.Forms.AnchorStyles.Right, System.Windows.Forms.AnchorStyles)
toolStrip1.AutoSize = False
toolStrip1.CanOverflow = False
toolStrip1.Cursor = Cursors.Cross
toolStrip1.Dock = System.Windows.Forms.DockStyle.None
toolStrip1.DefaultDropDownDirection = ToolStripDropDownDirection.BelowRight
toolStrip1.GripMargin = New System.Windows.Forms.Padding(3)
toolStrip1.ImageScalingSize = New System.Drawing.Size(20, 20)
toolStrip1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {toolStripButton1})
toolStrip1.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow
toolStrip1.Location = New System.Drawing.Point(0, 0)
toolStrip1.Margin = New System.Windows.Forms.Padding(1)
toolStrip1.Name = "toolStrip1"
toolStrip1.Padding = New System.Windows.Forms.Padding(0, 0, 2, 0)
toolStrip1.RenderMode = System.Windows.Forms.ToolStripRenderMode.System
toolStrip1.ShowItemToolTips = False
toolStrip1.Size = New System.Drawing.Size(109, 273)
toolStrip1.Stretch = True
toolStrip1.TabIndex = 0
toolStrip1.TabStop = True
toolStrip1.Text = "toolStrip1"
toolStrip1.TextDirection = System.Windows.Forms.ToolStripTextDirection.Vertical90
Comentarios
Establezca la propiedad AllowDrop en true
y establezca la propiedad AllowItemReorder en false
para responder al comportamiento de arrastrar y colocar que ha definido en los eventos Control.DragEnter, Control.DragLeavey Control.DragDrop.Set the AllowDrop property to true
and set the AllowItemReorder property to false
to respond to drag-and-drop behavior you have defined in the Control.DragEnter, Control.DragLeave, and Control.DragDrop events.
Establezca AllowDrop en false
y establezca AllowItemReorder en true
para que la clase ToolStrip Controle automáticamente la función de arrastrar y colocar y la reordenación de elementos.Set AllowDrop to false
and set AllowItemReorder to true
to cause the ToolStrip class to handle drag-and-drop and item reordering automatically. Establezca AllowItemReorder en true
para dos objetos ToolStrip para permitir arrastrar elementos de un ToolStrip al otro.Set AllowItemReorder to true
for two ToolStrip objects to allow dragging of items from one ToolStrip to the other. Para habilitar la función de arrastrar y colocar predeterminada, se debe presionar la tecla ALT durante la operación de arrastre.To enable the default drag-and-drop, the ALT key must be pressed during the drag operation.
Al establecer AllowDrop y AllowItemReorder en true
, se produce una excepción.Setting both AllowDrop and AllowItemReorder to true
throws an exception.