Mercurial > silverbladetech
view MetroWpf/MetroWpf.Xaml/Extensions/DependencyObject.cs @ 62:810116cd6b8e
ErrorWindow working
author | Steven Hollidge <stevenhollidge@hotmail.com> |
---|---|
date | Sun, 22 Apr 2012 09:01:20 +0100 |
parents | 060f02cd4591 |
children |
line wrap: on
line source
using System.Windows; using System.Windows.Media; namespace MetroWpf.Xaml.Extensions { public static class DependencyObjectExtensions { /// <summary> /// Finds a parent of a given control/item on the visual tree. /// </summary> /// <typeparam name="T">Type of Parent</typeparam> /// <param name="child">Child whose parent is queried</param> /// <returns>Returns the first parent item that matched the type (T), if no match found then it will return null</returns> public static T TryFindParent<T>(this DependencyObject child) where T : DependencyObject { DependencyObject parentObject = VisualTreeHelper.GetParent(child); if (parentObject == null) return null; T parent = parentObject as T; if (parent != null) return parent; else return TryFindParent<T>(parentObject); } } }