diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-08-08 18:06:43 +0300 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-08-08 18:06:43 +0300 |
| commit | 5e66f7f601bfbb2f4d46b7b379fd37a5cb88d0bf (patch) | |
| tree | c6fa1f4bcf331d3d36b8f92798e1edac81d90b61 /Software/Visual_Studio/Tango.Touch/Controls/TouchProgressBar.cs | |
| parent | 9c5f5c1351c78536b54df2c90742efae19f00b59 (diff) | |
| download | Tango-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.cs | 25 |
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))); + } + } +} |
