diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-05-31 17:23:18 +0300 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-05-31 17:23:18 +0300 |
| commit | f5a3a56e6737a3acaa759a5ff04347cc6a252f24 (patch) | |
| tree | f958956cf91803bdefc9e64bc6f5e200033af37d /Software/Visual_Studio/Tango.Touch/Components | |
| parent | 6f27e675c8349d873f683255ae842a4de59ebde7 (diff) | |
| download | Tango-f5a3a56e6737a3acaa759a5ff04347cc6a252f24.tar.gz Tango-f5a3a56e6737a3acaa759a5ff04347cc6a252f24.zip | |
Working on PPC.
Diffstat (limited to 'Software/Visual_Studio/Tango.Touch/Components')
| -rw-r--r-- | Software/Visual_Studio/Tango.Touch/Components/AttachedEventsManager.cs | 13 | ||||
| -rw-r--r-- | Software/Visual_Studio/Tango.Touch/Components/Ripple.cs | 5 |
2 files changed, 18 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.Touch/Components/AttachedEventsManager.cs b/Software/Visual_Studio/Tango.Touch/Components/AttachedEventsManager.cs new file mode 100644 index 000000000..167488c38 --- /dev/null +++ b/Software/Visual_Studio/Tango.Touch/Components/AttachedEventsManager.cs @@ -0,0 +1,13 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Tango.Touch.Components +{ + public static class AttachedEventsManager + { + + } +} diff --git a/Software/Visual_Studio/Tango.Touch/Components/Ripple.cs b/Software/Visual_Studio/Tango.Touch/Components/Ripple.cs index 39ea877d3..2cfd2a0b8 100644 --- a/Software/Visual_Studio/Tango.Touch/Components/Ripple.cs +++ b/Software/Visual_Studio/Tango.Touch/Components/Ripple.cs @@ -156,6 +156,11 @@ namespace Tango.Touch.Components if (parent == null) { + parent = UIHelper.FindAncestor<DataGridRow>(this); + } + + if (parent == null) + { parent = UIHelper.FindAncestor<FrameworkElement>(this); } |
