9 references to s_dataContextProperty
System.Windows.Forms (9)
System\Windows\Forms\Control.cs (9)
734
get => Properties.TryGetValue(
s_dataContextProperty
, out object? value)
746
if (Properties.ContainsKey(
s_dataContextProperty
) && Equals(ParentInternal?.DataContext, value))
748
Properties.RemoveValue(
s_dataContextProperty
);
753
Properties.AddValue(
s_dataContextProperty
, value);
759
=> Properties.ContainsKey(
s_dataContextProperty
);
762
=> Properties.RemoveValue(
s_dataContextProperty
);
6897
if (Properties.ContainsKey(
s_dataContextProperty
))
6899
if (Equals(Properties.GetValueOrDefault<object>(
s_dataContextProperty
), Parent?.DataContext))
6902
Properties.RemoveValue(
s_dataContextProperty
);