9 references to s_dataContextProperty
System.Windows.Forms (9)
System\Windows\Forms\Control.cs (9)
733
get => Properties.TryGetValue(
s_dataContextProperty
, out object? value)
745
if (Properties.ContainsKey(
s_dataContextProperty
) && Equals(ParentInternal?.DataContext, value))
747
Properties.RemoveValue(
s_dataContextProperty
);
752
Properties.AddValue(
s_dataContextProperty
, value);
758
=> Properties.ContainsKey(
s_dataContextProperty
);
761
=> Properties.RemoveValue(
s_dataContextProperty
);
6936
if (Properties.ContainsKey(
s_dataContextProperty
))
6938
if (Equals(Properties.GetValueOrDefault<object>(
s_dataContextProperty
), Parent?.DataContext))
6941
Properties.RemoveValue(
s_dataContextProperty
);