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