aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Touch/Controls/TouchCheckBox.cs
diff options
context:
space:
mode:
authorRoy Ben Shabat <Roy.mail.net@gmail.com>2018-06-19 22:04:27 +0300
committerRoy Ben Shabat <Roy.mail.net@gmail.com>2018-06-19 22:04:27 +0300
commit0afbbb6b79eca2a780462f9c46f50e705661013c (patch)
tree389a9da8da34d7d2984a806b6079bacb69c895c4 /Software/Visual_Studio/Tango.Touch/Controls/TouchCheckBox.cs
parenta1834062fe893548a75c091392c8018bfade317c (diff)
downloadTango-0afbbb6b79eca2a780462f9c46f50e705661013c.tar.gz
Tango-0afbbb6b79eca2a780462f9c46f50e705661013c.zip
Implemented Touch CheckBox.
Diffstat (limited to 'Software/Visual_Studio/Tango.Touch/Controls/TouchCheckBox.cs')
-rw-r--r--Software/Visual_Studio/Tango.Touch/Controls/TouchCheckBox.cs25
1 files changed, 25 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.Touch/Controls/TouchCheckBox.cs b/Software/Visual_Studio/Tango.Touch/Controls/TouchCheckBox.cs
new file mode 100644
index 000000000..eb19a0ba9
--- /dev/null
+++ b/Software/Visual_Studio/Tango.Touch/Controls/TouchCheckBox.cs
@@ -0,0 +1,25 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows;
+using System.Windows.Controls;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Input;
+using System.Windows.Media;
+using System.Windows.Media.Imaging;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+
+namespace Tango.Touch.Controls
+{
+ public class TouchCheckBox : CheckBox
+ {
+ static TouchCheckBox()
+ {
+ DefaultStyleKeyProperty.OverrideMetadata(typeof(TouchCheckBox), new FrameworkPropertyMetadata(typeof(TouchCheckBox)));
+ }
+ }
+}