aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Touch/Controls/TouchProgressBar.cs
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2018-08-08 18:06:43 +0300
committerRoy Ben-Shabat <Roy@Twine-s.com>2018-08-08 18:06:43 +0300
commit5e66f7f601bfbb2f4d46b7b379fd37a5cb88d0bf (patch)
treec6fa1f4bcf331d3d36b8f92798e1edac81d90b61 /Software/Visual_Studio/Tango.Touch/Controls/TouchProgressBar.cs
parent9c5f5c1351c78536b54df2c90742efae19f00b59 (diff)
downloadTango-5e66f7f601bfbb2f4d46b7b379fd37a5cb88d0bf.tar.gz
Tango-5e66f7f601bfbb2f4d46b7b379fd37a5cb88d0bf.zip
Working on machine setup.
Diffstat (limited to 'Software/Visual_Studio/Tango.Touch/Controls/TouchProgressBar.cs')
-rw-r--r--Software/Visual_Studio/Tango.Touch/Controls/TouchProgressBar.cs25
1 files changed, 25 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.Touch/Controls/TouchProgressBar.cs b/Software/Visual_Studio/Tango.Touch/Controls/TouchProgressBar.cs
new file mode 100644
index 000000000..99d208d4e
--- /dev/null
+++ b/Software/Visual_Studio/Tango.Touch/Controls/TouchProgressBar.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 TouchProgressBar : ProgressBar
+ {
+ static TouchProgressBar()
+ {
+ DefaultStyleKeyProperty.OverrideMetadata(typeof(TouchProgressBar), new FrameworkPropertyMetadata(typeof(TouchProgressBar)));
+ }
+ }
+}