6 references to s_cachedBoundsProperty
System.Windows.Forms (6)
System\Windows\Forms\Layout\DefaultLayout.cs (6)
1014
if (container.Properties.TryGetValue(
s_cachedBoundsProperty
, out IDictionary? dictionary))
1028
container is not null && container.Properties.ContainsKey(
s_cachedBoundsProperty
);
1043
if (!container.Properties.TryGetValue(
s_cachedBoundsProperty
, out IDictionary? dictionary))
1077
private static void ClearCachedBounds(IArrangedElement container) => container.Properties.RemoveValue(
s_cachedBoundsProperty
);
1083
if (!container.Properties.TryGetValue(
s_cachedBoundsProperty
, out IDictionary? dictionary))
1085
dictionary = container.Properties.AddValue(
s_cachedBoundsProperty
, new HybridDictionary());