1 write to _dataSource
System.Windows.Forms (1)
System\Windows\Forms\DataBinding\PropertyManager.cs (1)
35
_dataSource
= dataSource;
11 references to _dataSource
System.Windows.Forms (11)
System\Windows\Forms\DataBinding\PropertyManager.cs (11)
19
public override object? Current =>
_dataSource
;
29
if (
_dataSource
is not null && !string.IsNullOrEmpty(_propName))
31
_propInfo?.RemoveValueChanged(
_dataSource
, PropertyChanged);
37
if (
_dataSource
is not null && !string.IsNullOrEmpty(_propName))
39
_propInfo = TypeDescriptor.GetProperties(
_dataSource
).Find(_propName, true);
45
_propInfo.AddValueChanged(
_dataSource
, PropertyChanged);
65
return ListBindingHelper.GetListItemProperties(
_dataSource
, listAccessors);
68
internal override Type BindType =>
_dataSource
!.GetType();
72
return $"{TypeDescriptor.GetClassName(
_dataSource
!)}.{_propName}";
177
internal override object? DataSource =>
_dataSource
;
179
internal override bool IsBinding =>
_dataSource
is not null;