vote up 1 vote down star

Given that you have a control that fires a command:

<Button Command="New"/>

Is there a way to prevent the command from being fired twice if the user double clicks on the command?

EDIT: What is significant in this case is that I am using the Commanding model in WPF.

It appears that whenever the button is pressed, the command is executed. I do not see any way of preventing this besides disabling or hiding the button.

flag

There doesn't appear to be anyway to adjust/override WPF's internal handling of the click event? – Josh G May 8 at 19:27

4 Answers

vote up 2 vote down check

Perhaps the button should disabled after the first click and until the processing has been completed?

link|flag
I believe this is essentially what I will need to do. – Josh G May 8 at 20:43
vote up 1 vote down

Assuming that WPF Commanding doesn't give you enough control to mess with the click handler, could you put some code in the command handler that remembers the last time the command was executed and exits if it is requested within a given time period? (code example below)

The idea is that if it's a double-click, you'll receive the event twice within milliseconds, so ignore the second event.

Something like: (inside of the Command)


// warning:  I haven't tried compiling this, but it should be pretty close
DateTime LastInvoked = DateTime.MinDate;
Timespan InvokeDelay = Timespan.FromMilliseconds(100);
{
  if(DateTime.Now - LastInvoked <= InvokeDelay)
     return;

  // do your work
}

(note: if it were just a plain old click handler, I'd say follow this advice: http://blogs.msdn.com/oldnewthing/archive/2009/04/29/9574643.aspx )

link|flag
Good link. The debouncing technique that your refer to is precisely what I am talking about. Turns out our WPF program misperforms sometimes if you double click on buttons that were intended to be singly clicked. – Josh G May 8 at 20:42
vote up 0 vote down

You could set a flag

bool boolClicked = false;
button_OnClick
{
    if(!boolClicked)
    {
        boolClicked = true;
        //do something
        boolClicked = false;
    }
}
link|flag
vote up 0 vote down

If your control derives from System.Windows.Forms.Control, you can use the double click event.

If it doesn't derive from System.Windows.Forms.Control, then wire up mousedown instead and confirm the click count == 2 :

private void Button_MouseDown(object sender, MouseButtonEventArgs e)
{
    if (e.ClickCount == 2)
    {
       //Do stuff
    }
 }
link|flag
This is a WPF control... It derives from System.Windows.Controls.Control – Josh G May 8 at 19:26
Then you can use this: msdn.microsoft.com/en-us/library/… Or have I missunderstood? – Noel Kennedy May 8 at 19:42

Your Answer

Get an OpenID
or

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