7 references to s_LayoutRecursionLimit
PresentationCore (4)
System\Windows\LayoutManager.cs (4)
131if(_measuresOnStack > s_LayoutRecursionLimit) 132throw new InvalidOperationException(SR.Format(SR.LayoutManager_DeepRecursion, s_LayoutRecursionLimit)); 148if(_arrangesOnStack > s_LayoutRecursionLimit) 149throw new InvalidOperationException(SR.Format(SR.LayoutManager_DeepRecursion, s_LayoutRecursionLimit));
PresentationFramework (3)
System\Windows\DescendentsWalker.cs (2)
350if (_recursionDepth <= ContextLayoutManager.s_LayoutRecursionLimit) 392if (_recursionDepth <= ContextLayoutManager.s_LayoutRecursionLimit)
System\Windows\FrameworkElement.cs (1)
1169if (loopCount > ContextLayoutManager.s_LayoutRecursionLimit)