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)
19public override object? Current => _dataSource; 29if (_dataSource is not null && !string.IsNullOrEmpty(_propName)) 31_propInfo?.RemoveValueChanged(_dataSource, PropertyChanged); 37if (_dataSource is not null && !string.IsNullOrEmpty(_propName)) 39_propInfo = TypeDescriptor.GetProperties(_dataSource).Find(_propName, true); 45_propInfo.AddValueChanged(_dataSource, PropertyChanged); 65return ListBindingHelper.GetListItemProperties(_dataSource, listAccessors); 68internal override Type BindType => _dataSource!.GetType(); 72return $"{TypeDescriptor.GetClassName(_dataSource!)}.{_propName}"; 177internal override object? DataSource => _dataSource; 179internal override bool IsBinding => _dataSource is not null;