aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Touch/Controls/TouchIconButton.cs
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2018-07-01 13:25:52 +0300
committerRoy Ben-Shabat <Roy@Twine-s.com>2018-07-01 13:25:52 +0300
commit00d88a42db78041f01c6951453e555b3afc6e2de (patch)
treec003fec83c358a2783455bfbd4f227aea0ab96be /Software/Visual_Studio/Tango.Touch/Controls/TouchIconButton.cs
parentb2ecc74067ad29c0bb4d267fb966ceb7cb8cbbdb (diff)
downloadTango-00d88a42db78041f01c6951453e555b3afc6e2de.tar.gz
Tango-00d88a42db78041f01c6951453e555b3afc6e2de.zip
Modified Touch.Touch to use the internal icons set!
Diffstat (limited to 'Software/Visual_Studio/Tango.Touch/Controls/TouchIconButton.cs')
-rw-r--r--Software/Visual_Studio/Tango.Touch/Controls/TouchIconButton.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/Software/Visual_Studio/Tango.Touch/Controls/TouchIconButton.cs b/Software/Visual_Studio/Tango.Touch/Controls/TouchIconButton.cs
index 71c66f0b6..f61aa0564 100644
--- a/Software/Visual_Studio/Tango.Touch/Controls/TouchIconButton.cs
+++ b/Software/Visual_Studio/Tango.Touch/Controls/TouchIconButton.cs
@@ -18,13 +18,13 @@ namespace Tango.Touch.Controls
{
public class TouchIconButton : TouchButton
{
- public FontAwesomeIcon Icon
+ public TouchIconKind Icon
{
- get { return (FontAwesomeIcon)GetValue(IconProperty); }
+ get { return (TouchIconKind)GetValue(IconProperty); }
set { SetValue(IconProperty, value); }
}
public static readonly DependencyProperty IconProperty =
- DependencyProperty.Register("Icon", typeof(FontAwesomeIcon), typeof(TouchIconButton), new PropertyMetadata(FontAwesomeIcon.None));
+ DependencyProperty.Register("Icon", typeof(TouchIconKind), typeof(TouchIconButton), new PropertyMetadata(TouchIconKind.None));
public double IconAngle
{