aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.DragAndDrop/DragThumb.cs
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2018-05-29 19:44:54 +0300
committerRoy Ben-Shabat <Roy@Twine-s.com>2018-05-29 19:44:54 +0300
commitac9090470eba25bb3c789f0e87ecf70e6a7be55f (patch)
tree0b26051e6af32d7c7181024ef942da6c36c7467e /Software/Visual_Studio/Tango.DragAndDrop/DragThumb.cs
parent378789e4c4bc694736965cb8c620883bf91b8f08 (diff)
downloadTango-ac9090470eba25bb3c789f0e87ecf70e6a7be55f.tar.gz
Tango-ac9090470eba25bb3c789f0e87ecf70e6a7be55f.zip
Working on Mouse/Touch synchronization!
Diffstat (limited to 'Software/Visual_Studio/Tango.DragAndDrop/DragThumb.cs')
-rw-r--r--Software/Visual_Studio/Tango.DragAndDrop/DragThumb.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.DragAndDrop/DragThumb.cs b/Software/Visual_Studio/Tango.DragAndDrop/DragThumb.cs
new file mode 100644
index 000000000..952c35bb5
--- /dev/null
+++ b/Software/Visual_Studio/Tango.DragAndDrop/DragThumb.cs
@@ -0,0 +1,20 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Controls;
+using System.Windows.Input;
+using System.Windows.Media;
+
+namespace Tango.DragAndDrop
+{
+ public class DragThumb : Grid
+ {
+ public DragThumb()
+ {
+ Background = Brushes.Transparent;
+ IsHitTestVisible = true;
+ }
+ }
+}