Click here to Skip to main content
Click here to Skip to main content

Mouse Double Click Helper in Silverlight 4.0

By , 18 Jul 2012
 

Introduction

The code snippet will decide if the user has double clickled on a control or not in Silverlight (or you can use it in anywhere but I will demonstrate it only for Silverlight).

Background

As double click support is not there in Silverlight we have decided to write our own code for the same.

Using the code

TestListBox.MouseLeftButtonDown += new MouseButtonEventHandler(TestListBox_MouseLeftButtonDown);
TestListBox.MouseLeftButtonUp += new MouseButtonEventHandler(TestListBox_MouseLeftButtonUp);

Use the below code for event handling.

/// <summary>
/// Handles the Mouse left button down event
/// </summary>
/// <param name="sender"></param>
/// <param name="arguments"></param>
private void TestListBox_MouseLeftButtonDown(object sender, MouseButtonEventArgs arguments)
{
  try
  {
    arguments.Handled = true;
  }
  catch (Exception exception)
  {
  }
}
/// <summary>
/// Handles Mouse left button up event
/// </summary>
/// <param name="sender"></param>
/// <param name="arguments"></param>
private void TestListBox_MouseLeftButtonUp(object sender, MouseButtonEventArgs arguments)
{
    bool doubleClick;
    try
    {
        doubleClick = MouseDoubleClickHelper.IsDoubleClick(sender, arguments);
        if (doubleClick)
        {      // - Do some work. 
        }
    }
    catch (Exception exception)
    {
    }
}

See attached code for the same. Based on the value of doubleClick variable user can perform any task.

Points of Interest

While writing/analyzing the code I saw that WPF already has a doubleClick event but Silverlight does not. Hope it will be there in the next version. Oh it's there in Silverlight 5 see http://www.silverlight.net/learn/overview/what's-new-in-silverlight-5/silverlight-5-mouse-button-double-and-multi-click.

But we are using Silverlight 4.0 that's really bad. However I think this will be really helpful for those who still use oldies technologies like me.

History

Initial version.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Rahul.KumarSharma
Software Developer (Senior)
India India
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralMy vote of 5memberChristian Amado1 Aug '12 - 3:23 
Questionnot able to downloadmemberaashish32122 Jul '12 - 3:33 
AnswerRe: not able to downloadmemberRahul.KumarSharma29 Jul '12 - 18:14 
GeneralRe: not able to downloadmemberyunkun_yang24 Sep '12 - 17:12 
Still can not download
GeneralRe: not able to downloadmemberforward24 Sep '12 - 17:13 
GeneralRe: not able to downloadmemberMember 942288028 Sep '12 - 8:46 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130516.1 | Last Updated 18 Jul 2012
Article Copyright 2012 by Rahul.KumarSharma
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid