diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-06-11 10:59:51 +0300 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-06-11 10:59:51 +0300 |
| commit | 88477019255efb3ff02ba3de195741f1d49a925e (patch) | |
| tree | c4950adb07b18d79d264ad55d0089be8ee7b0aa0 /Software/Visual_Studio/Tango.Touch/Controls/TouchNavigationLinks.cs | |
| parent | b21d8e7c164b63d14d15cfdf3dda68ae88a03043 (diff) | |
| download | Tango-88477019255efb3ff02ba3de195741f1d49a925e.tar.gz Tango-88477019255efb3ff02ba3de195741f1d49a925e.zip | |
Moved some method from UIHelper to DependencyObjectExtensions
Diffstat (limited to 'Software/Visual_Studio/Tango.Touch/Controls/TouchNavigationLinks.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.Touch/Controls/TouchNavigationLinks.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Software/Visual_Studio/Tango.Touch/Controls/TouchNavigationLinks.cs b/Software/Visual_Studio/Tango.Touch/Controls/TouchNavigationLinks.cs index bc1a63124..a5dbb4f3a 100644 --- a/Software/Visual_Studio/Tango.Touch/Controls/TouchNavigationLinks.cs +++ b/Software/Visual_Studio/Tango.Touch/Controls/TouchNavigationLinks.cs @@ -52,7 +52,7 @@ namespace Tango.Touch.Controls { var container = ItemContainerGenerator.ContainerFromItem(SelectedItem) as FrameworkElement; - ContentPresenter presenter = UIHelper.FindChild<ContentPresenter>(container).FindChild<ContentPresenter>(); + ContentPresenter presenter = container.FindChild<ContentPresenter>().FindChild<ContentPresenter>(); if (presenter != null) { |
