ToolStrip.AllowItemReorder プロパティとは? わかりやすく解説

Weblio 辞書 > コンピュータ > .NET Framework クラス ライブラリ リファレンス > ToolStrip.AllowItemReorder プロパティの意味・解説 

ToolStrip.AllowItemReorder プロパティ

メモ : このプロパティは、.NET Framework version 2.0新しく追加されたものです。

ToolStrip クラスによって、ドラッグ アンド ドロップおよび項目の順番変更プライベート処理されるかどうかを示す値を取得または設定します

名前空間: System.Windows.Forms
アセンブリ: System.Windows.Forms (system.windows.forms.dll 内)
構文構文

Public Property AllowItemReorder As
 Boolean
Dim instance As ToolStrip
Dim value As Boolean

value = instance.AllowItemReorder

instance.AllowItemReorder = value
public bool AllowItemReorder { get;
 set; }
public:
property bool AllowItemReorder {
    bool get ();
    void set (bool value);
}
/** @property */
public boolean get_AllowItemReorder ()

/** @property */
public void set_AllowItemReorder (boolean value)
public function get AllowItemReorder
 () : boolean

public function set AllowItemReorder
 (value : boolean)

プロパティ
ToolStrip クラスによってドラッグ アンド ドロップおよび項目の順番変更自動的に処理する場合trueそれ以外場合false既定値false です。

例外例外
例外種類条件

ArgumentException

AllowDrop および AllowItemReorderどちらも true設定されています。

解説解説

Control.DragEnter、Control.DragLeave、および Control.DragDrop の各イベント定義したドラッグ アンド ドロップ動作応答するには、AllowDrop プロパティtrue設定してAllowItemReorder プロパティfalse設定します

ToolStrip クラスによってドラッグ アンド ドロップおよび項目の順番変更自動的に処理するには、AllowDropfalse設定してAllowItemReordertrue設定します一方ToolStrip からもう一方に項目をドラッグできるようにするには、2 つToolStrip オブジェクトAllowItemReordertrue設定します既定ドラッグ アンド ドロップ有効にするには、ドラッグ操作中に Alt キーを押す必要があります

AllowDropAllowItemReorder両方true設定すると、例外スローさます。

使用例使用例

ToolStrip対しAllowItemReorder プロパティなど、共通のプロパティ設定するための構文次のコード例示します

' 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
// 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;
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
ToolStrip クラス
ToolStrip メンバ
System.Windows.Forms 名前空間
ToolStrip.AllowDrop プロパティ
Control.DragEnter イベント
Control.DragLeave イベント
Control.DragDrop イベント
その他の技術情報
方法 : Windows フォーム内で実行時に ToolStrip 項目を並べ替えできるようにする



英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

ToolStrip.AllowItemReorder プロパティのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



ToolStrip.AllowItemReorder プロパティのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2024 Microsoft.All rights reserved.

©2024 GRAS Group, Inc.RSS