9 references to s_dataContextProperty
System.Windows.Forms (9)
System\Windows\Forms\Control.cs (9)
851
get => Properties.TryGetValue(
s_dataContextProperty
, out object? value)
863
if (Properties.ContainsKey(
s_dataContextProperty
) && Equals(ParentInternal?.DataContext, value))
865
Properties.RemoveValue(
s_dataContextProperty
);
870
Properties.AddValue(
s_dataContextProperty
, value);
876
=> Properties.ContainsKey(
s_dataContextProperty
);
879
=> Properties.RemoveValue(
s_dataContextProperty
);
7401
if (Properties.ContainsKey(
s_dataContextProperty
))
7403
if (Equals(Properties.GetValueOrDefault<object>(
s_dataContextProperty
), Parent?.DataContext))
7406
Properties.RemoveValue(
s_dataContextProperty
);