Skip to content

Instantly share code, notes, and snippets.

View RicardoCampos's full-sized avatar

Ricardo Campos RicardoCampos

  • Northampton, United Kingdom
View GitHub Profile
@RicardoCampos
RicardoCampos / DoubleClickEvent
Created January 20, 2012 14:29 — forked from vcaraulean/DoubleClickEvent
Mouse Double Click event implementation for Silverlight and Caliburn.Micro
public static class DoubleClickEvent
{
public static readonly DependencyProperty AttachActionProperty =
DependencyProperty.RegisterAttached(
"AttachAction",
typeof (string),
typeof (DoubleClickEvent),
new PropertyMetadata(OnAttachActionChanged));
public static void SetAttachAction(DependencyObject d, string attachText)