public virtual T FindProximateParentTypedUIElement <T>() where T : class, IUIElement
        {
            IProximateParentTypedUIECalculator <T> calculator = new ProximateParentTypedUIECalculator <T>(this);

            return(calculator.Calculate());
        }
Exemple #2
0
        protected T FindProximateParentTypedUIElement <T>() where T : class, IUIElement
        {
            IProximateParentTypedUIECalculator <T> calculator = new ProximateParentTypedUIECalculator <T>(this.GetUIElement());

            return(calculator.Calculate());
        }