GiveFeedbackEventArgsとは? わかりやすく解説

GiveFeedbackEventArgs クラス

ドラッグ操作中に発生する GiveFeedback イベントデータ提供します

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

<ComVisibleAttribute(True)> _
Public Class GiveFeedbackEventArgs
    Inherits EventArgs
Dim instance As GiveFeedbackEventArgs
[ComVisibleAttribute(true)] 
public class GiveFeedbackEventArgs : EventArgs
[ComVisibleAttribute(true)] 
public ref class GiveFeedbackEventArgs : public
 EventArgs
/** @attribute ComVisibleAttribute(true) */ 
public class GiveFeedbackEventArgs extends
 EventArgs
ComVisibleAttribute(true) 
public class GiveFeedbackEventArgs extends
 EventArgs
解説解説
使用例使用例

2 つListBox コントロールの間でドラッグ アンド ドロップ操作実行する例を次に示します。この例では、ドラッグ アクション開始したときに DoDragDrop メソッド呼び出されます。ドラッグ操作は、MouseDown イベント実行中のマウス位置から SystemInformation.DragSize を超えてマウス移動したときに開始されます。IndexFromPoint メソッドは、MouseDown イベントで、ドラッグする項目のインデックス判別するために使用します

この例では、ドラッグ アンド ドロップ操作カスタム カーソル使用する方法についても示します。この例では、2 つカーソル ファイル (3dwarro.cur3dwno.cur) がアプリケーション ディレクトリ内に存在していることを想定してます。なお、それぞれのファイルドラッグ用のカスタム カーソルドロップなしのカスタム カーソル表しますカスタム カーソルは、UseCustomCursorsCheckCheckBoxオンになっている場合使用されます。カスタム カーソルは、GiveFeedback イベント ハンドラ設定されます。

キーボードの状態は、右側ListBox の DragOver イベント ハンドラ評価されます。ドラッグ操作内容は、Shift キーCtrl キーAlt キー、または Ctrl + Alt キーの状態によって決まりますドロップ発生する ListBox 内の位置は、DragOver イベント時に判定されます。ドロップするデータStringない場合は、DragEventArgs.Effect が DragDropEffects.None に設定されます。最後にドロップステータスDropLocationLabelLabel表示されます。

右側ListBoxドロップするデータは、DragDrop イベント ハンドラ判定されます。また、String 値が ListBox該当する場所に追加されます。ドラッグ操作フォーム範囲超えて移動した場合ドラッグ アンド ドロップ操作は QueryContinueDrag イベント ハンドラキャンセルされます。

GiveFeedbackEventArgs クラス使用方法次のコード例示しますコード例全体については、DoDragDrop メソッドトピック参照してください

Private Sub ListDragSource_GiveFeedback(ByVal
 sender As Object, ByVal
 e As GiveFeedbackEventArgs) Handles ListDragSource.GiveFeedback

    ' Use custom cursors if the check box is checked.
    If (UseCustomCursorsCheck.Checked) Then

        ' Set the custom cursor based upon the effect.
        e.UseDefaultCursors = False
        If ((e.Effect And DragDropEffects.Move)
 = DragDropEffects.Move) Then
            Cursor.Current = MyNormalCursor
        Else
            Cursor.Current = MyNoDropCursor
        End If
    End If

End Sub
private void ListDragSource_GiveFeedback(object
 sender, System.Windows.Forms.GiveFeedbackEventArgs e) 
{
    // Use custom cursors if the check box is checked.
    if (UseCustomCursorsCheck.Checked) {

        // Sets the custom cursor based upon the effect.
        e.UseDefaultCursors = false;
        if ((e.Effect & DragDropEffects.Move) == DragDropEffects.Move)
            Cursor.Current = MyNormalCursor;
        else 
            Cursor.Current = MyNoDropCursor;
    }

}
void ListDragSource_GiveFeedback( Object^ /*sender*/, System::Windows::Forms::GiveFeedbackEventArgs^
 e )
{
   // Use custom cursors if the check box is checked.
   if ( UseCustomCursorsCheck->Checked )
   {
      // Sets the custom cursor based upon the effect.
      e->UseDefaultCursors = false;
      if ( (e->Effect & DragDropEffects::Move) == DragDropEffects::Move
 )
                  ::Cursor::Current = MyNormalCursor;
      else
                  ::Cursor::Current = MyNoDropCursor;
   }
}
private void listDragSource_GiveFeedback(Object
 sender, 
    System.Windows.Forms.GiveFeedbackEventArgs e)
{
    // Use custom cursors if the check box is checked.
    if (useCustomCursorsCheck.get_Checked()) {
        // Sets the custom cursor based upon the effect.
        e.set_UseDefaultCursors(false);
        if ((e.get_Effect() & DragDropEffects.Move) 
            == DragDropEffects.Move) {
            get_Cursor().set_Current(myNormalCursor);
        }
        else {
            get_Cursor().set_Current(myNoDropCursor);
        }
    }
} //listDragSource_GiveFeedback
継承階層継承階層
System.Object
   System.EventArgs
    System.Windows.Forms.GiveFeedbackEventArgs
スレッド セーフスレッド セーフ
この型の public static (Visual Basic では Shared) メンバはすべて、スレッド セーフです。インスタンス メンバ場合は、スレッド セーフであるとは限りません。
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照

GiveFeedbackEventArgs コンストラクタ

GiveFeedbackEventArgs クラス新しインスタンス初期化します。

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

Public Sub New ( _
    effect As DragDropEffects, _
    useDefaultCursors As Boolean _
)
Dim effect As DragDropEffects
Dim useDefaultCursors As Boolean

Dim instance As New GiveFeedbackEventArgs(effect,
 useDefaultCursors)
public GiveFeedbackEventArgs (
    DragDropEffects effect,
    bool useDefaultCursors
)
public:
GiveFeedbackEventArgs (
    DragDropEffects effect, 
    bool useDefaultCursors
)
public GiveFeedbackEventArgs (
    DragDropEffects effect, 
    boolean useDefaultCursors
)
public function GiveFeedbackEventArgs (
    effect : DragDropEffects, 
    useDefaultCursors : boolean
)

パラメータ

effect

ドラッグ アンド ドロップ操作種類。この値は、DragDropEffects で定義されている定数ビット単位の OR (|) 演算適用した値になります

useDefaultCursors

既定ポインタ使用される場合は、trueそれ以外場合false

プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
GiveFeedbackEventArgs クラス
GiveFeedbackEventArgs メンバ
System.Windows.Forms 名前空間

GiveFeedbackEventArgs プロパティ


GiveFeedbackEventArgs メソッド


GiveFeedbackEventArgs メンバ

ドラッグ操作中に発生する GiveFeedback イベントデータ提供します

GiveFeedbackEventArgs データ型公開されるメンバを以下の表に示します


パブリック コンストラクタパブリック コンストラクタ
  名前 説明
パブリック メソッド GiveFeedbackEventArgs GiveFeedbackEventArgs クラス新しインスタンス初期化します。
パブリック プロパティパブリック プロパティ
パブリック メソッドパブリック メソッド
プロテクト メソッドプロテクト メソッド
参照参照

関連項目

GiveFeedbackEventArgs クラス
System.Windows.Forms 名前空間



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

辞書ショートカット

すべての辞書の索引

「GiveFeedbackEventArgs」の関連用語

GiveFeedbackEventArgsのお隣キーワード
検索ランキング

   

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



GiveFeedbackEventArgsのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

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

©2024 GRAS Group, Inc.RSS