diff options
| author | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2018-06-19 02:04:02 +0300 |
|---|---|---|
| committer | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2018-06-19 02:04:02 +0300 |
| commit | 7270575582ea3350a58853065cc0d8ac59a90659 (patch) | |
| tree | 8b36a3522c04ea00228f81ba1232545333adc97f /Software/Visual_Studio/Tango.Touch/Components | |
| parent | d6ca354bfddee7cbe1ef186ad4c8a80e97410c2f (diff) | |
| download | Tango-7270575582ea3350a58853065cc0d8ac59a90659.tar.gz Tango-7270575582ea3350a58853065cc0d8ac59a90659.zip | |
Implemented Touch Listbox !
Diffstat (limited to 'Software/Visual_Studio/Tango.Touch/Components')
| -rw-r--r-- | Software/Visual_Studio/Tango.Touch/Components/Ripple.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.Touch/Components/Ripple.cs b/Software/Visual_Studio/Tango.Touch/Components/Ripple.cs index b9d3f37b5..03ee4ccc0 100644 --- a/Software/Visual_Studio/Tango.Touch/Components/Ripple.cs +++ b/Software/Visual_Studio/Tango.Touch/Components/Ripple.cs @@ -16,6 +16,7 @@ using System.Windows.Media.Imaging; using System.Windows.Navigation; using System.Windows.Shapes; using Tango.SharedUI.Helpers; +using Tango.Touch.Controls; namespace Tango.Touch.Components { @@ -178,6 +179,11 @@ namespace Tango.Touch.Components if (parent == null) { + parent = this.FindAncestor<TouchListBoxItem>(); + } + + if (parent == null) + { parent = this.FindAncestor<Border>(); } |
