void listBox1_QueryContinueDrag(object sender, System.Windows.Forms.QueryContinueDragEventArgs e)
    {
        ListBox lb = (ListBox)sender;

        textBox1.AppendText('\n' + e.Action.ToString() + '\n' + this.Name.ToString());

        if (e.Action == DragAction.Drop)
        {
            Autodesk.AutoCAD.ApplicationServices.Application.DoDragDrop(this, "Drag & drop successful!!!", System.Windows.Forms.DragDropEffects.All, new DragDrop());
        }
    }
 void IBranch.OnQueryContinueDrag(System.Windows.Forms.QueryContinueDragEventArgs args, int row, int column)
 {
 }
예제 #3
0
 private void TestControl_QueryContinueDrag(object sender, System.Windows.Forms.QueryContinueDragEventArgs e)
 {
     System.Diagnostics.Debug.WriteLine("QueryContinueDrag");
 }
예제 #4
0
 public virtual void OnQueryContinueDrag(Glyph g, System.Windows.Forms.QueryContinueDragEventArgs e)
 {
 }
예제 #5
0
 public virtual void OnQueryContinueDrag(System.Windows.Forms.Design.Behavior.Glyph g, System.Windows.Forms.QueryContinueDragEventArgs e)
 {
 }
예제 #6
0
 private void obj_QueryContinueDrag(System.Object sender, System.Windows.Forms.QueryContinueDragEventArgs e)
 {
     this.OnChanged(sender);
 }
예제 #7
0
 protected virtual void OnQueryContinueDrag(System.Windows.Forms.QueryContinueDragEventArgs e);