Example #1
0
        protected sealed override Size MeasureOverrideCore(Size availableSize)
        {
            try
            {
                MeasureStack.Push(this);

                ImplementationRootLoadedService.PulseImplementationRoot(this);

                return(MeasureCoreOverride(availableSize));
            }
            catch (Exception e)
            {
                LogService.LogError(e);
            }
            finally
            {
                MeasureStack.Pop(this);
            }

            return(XamlConstants.ZeroSize);
        }
Example #2
0
 static InteractivityService()
 {
     ImplementationRootLoadedService.RegisterLoaderProperty(ImplementationRootProperty);
 }