I have two labels on a form. I want to be able to drag one label over the other and while the mouse left button is still down I want to be able to press space key to toggle target label's text between "foo" and "bar".

Seems like all input events are suppressed while mouse left button is not released.

Am I missing something? Any samples?

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

Check out the GiveFeedback event. Maybe you can check from there if a key is being pressed.

EDIT:

void panel1_QueryContinueDrag(object sender, QueryContinueDragEventArgs e)
{
    if (Keyboard.IsKeyDown(Key.Space))
    {
        if (label1.Text == "foo") label1.Text = "bar"; else label1.Text = "foo";
    }
}

and add a reference to PresentaionCore and: WindowBase (You'll find that in: C:\Program Files (x86)\ReferenceAssemblies\Microsoft\Framework\v3.0\ .)

You'll have to play with this a little.

link|improve this answer
This one is close. In conjunction with QueryContinueDrag it could do the trick but I still do not get space key state – Ramunas Dec 6 '11 at 20:09
@Ramunas Maybe(!) these might help: stackoverflow.com/questions/1100285/… and: stackoverflow.com/questions/1752494/… – ispiro Dec 6 '11 at 20:48
@Ramunas See my edit. – ispiro Dec 6 '11 at 21:06
Works like a charm. Thanks – Ramunas Dec 6 '11 at 22:08
feedback

If dragged element never leaves original form consider interpreting mouse events instead of using D&D mechanism. It won't be as good, but it will let you interpret other messages during dragging.

public class MyForm : Form
{
    private Label label;

    public MyForm()
    {
        KeyPress += new KeyPressEventHandler(Form_KeyPress);
        label = new Label();
        label.Text = "foo";
        label.MouseMove += new MouseEventHandler(label_MouseMove);
        Controls.Add(label);
    }

    private void label_MouseMove(object sender, MouseEventArgs e)
    {
        if (MouseButtons == MouseButtons.Left)
        {
            Point loc = label.Location;
            loc.Offset(e.X, e.Y);
            label.Location = loc;
        }
    }

    private void Form_KeyPress(object sender, KeyPressEventArgs e)
    {
        if (e.KeyChar == ' ')
        {
            if (label.Text == "foo")
                label.Text = "bar";
            else
                label.Text = "foo";
        }
    }
}
link|improve this answer
feedback

//try something like this and change things where needed to fit your working example

  public partial class Form1 : Form 
  {
      public Form1()
      {
        InitializeComponent();
        label1.MouseDown += new MouseEventHandler(label1_MouseDown);         
        textBox1.AllowDrop = true;
        textBox1.DragEnter += new DragEventHandler(textBox1_DragEnter);
        textBox1.DragDrop += new DragEventHandler(textBox1_DragDrop);
      }

      void label1_MouseDown(object sender, MouseEventArgs e)
      {
        DoDragDrop(label1.Text, DragDropEffects.Copy);
      }

      void textBox1_DragEnter(object sender, DragEventArgs e)
      {
        if (e.Data.GetDataPresent(DataFormats.Text))
         e.Effect = DragDropEffects.Copy;
      }

      void textBox1_DragDrop(object sender, DragEventArgs e)
      {
        textBox1.Text = (string)e.Data.GetData(DataFormats.Text);
      }
  }
link|improve this answer
3  
How does this answer the question? – Thomas Levesque Dec 6 '11 at 19:39
1  
he wanted an example of drag and drop of labels – DJ KRAZE Dec 6 '11 at 19:49
I think the OP is stuck on the keypress part. – LarsTech Dec 6 '11 at 19:56
@DJ KRAZE: for simple drag'n'drop I can easily refer to google. Question is why I do not receive any keyboard events while dragging. – Ramunas Dec 6 '11 at 19:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.