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) ?? 41_propInfo.AddValueChanged(_dataSource, PropertyChanged); 61return ListBindingHelper.GetListItemProperties(_dataSource, listAccessors); 64internal override Type BindType => _dataSource!.GetType(); 68return $"{TypeDescriptor.GetClassName(_dataSource!)}.{_propName}"; 173internal override object? DataSource => _dataSource; 175internal override bool IsBinding => _dataSource is not null;