![]() |
![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() |
|
Welcome to Vista Forums we are your forum to discuss Windows Vista x64 and x86 systems. Whether you need help or just want to post an idea you have on Vista, this is the forum for you.
br> br> |
| |||||||
![]() |
| | Thread Tools | Display Modes |
| | #1 (permalink) |
| Guest | DoubleClik event implemenattion Hi all, I have implemented my own DoubleClick Event for some FrameworkElements like Viewport3D or some of the panels, because only controls implement DoubleClickEvent. I made it on this way: constructor code: this.MouseDown += new MouseButtonEventHandle(CustomViewPort3D_MouseDown); _clickTimeSpan = TimeSpan.FromMilliseconds((double)System.Windows.Forms.SystemInformation.DoubleClickTime); _prevClickTimeStamp = DateTime.Now; declarations: public event System.Windows.Input.MouseEventHandler MouseDoubleClick; private TimeSpan _clickTimeSpan; private DateTime _prevClickTimeStamp; MouseDownHandler: void CustomViewPort3D_MouseDown(object sender, MouseButtonEventArgs e) { TimeSpan timeSpan = TimeSpan.FromTicks(DateTime.Now.Ticks - _prevClickTimeStamp.Ticks); if (timeSpan > _clickTimeSpan) _prevClickTimeStamp = DateTime.Now; else { //fire event if (MouseDoubleClick != null) MouseDoubleClick(sender, e); } } For time between both clicks i used "SystemInformation.DoubleClickTime" property from windows.forms. Do anybody know where to find this property in wpf, I couldn't find it? Or can anybody suggest any more simple solutions for doubleclick on FrameWorkElements? thanks |
![]() |
| Thread Tools | |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| WMI event - Failed to start event | Pav | PowerShell | 3 | 05-09-2007 06:48 PM |
| BUG: a lot of errors "Event ID 6003 winlogon" in Event Viewer | BillD | Vista General | 1 | 03-28-2007 10:39 AM |
| Windows Event Log fails to translate event description. | Deepak Jha | Vista General | 0 | 12-15-2006 06:30 AM |
| Event Log Event ID 18212 errors | Jerry Witalka | Vista General | 0 | 08-26-2006 02:13 PM |
| Unable to fetch the Event Log - Event Description | Vineet Das | Vista security | 4 | 08-24-2006 01:52 AM |