Merge branch 'hotfix/#137' into develop

This commit is contained in:
stubbfel
2013-07-24 12:18:41 +02:00

View File

@@ -163,6 +163,12 @@ namespace CampusAppWP8.Utility
Visibility retValue;
List<DependencyObject> l = Utilities.GetChild(rootObj, parentGridName);
if (index >= l.Count)
{
index = 0;
}
Grid parentGrid = l[index] as Grid;
FrameworkElement elem = null;