1 write to dataSource
System.Windows.Forms (1)
winforms\Managed\System\WinForms\ListControl.cs (1)
759dataSource = newDataSource;
14 references to dataSource
System.Windows.Forms (14)
winforms\Managed\System\WinForms\ListControl.cs (14)
79return dataSource; 84if (dataSource == value) 144SetDataConnection(dataSource, new BindingMemberInfo(value), false); 626SetDataConnection(dataSource, displayMember, true); 730Debug.Assert(sender == this.dataSource, "how can we get dispose notification for anything other than our dataSource?"); 735ISupportInitializeNotification dsInit = (this.dataSource as ISupportInitializeNotification); 738SetDataConnection(this.dataSource, this.displayMember, true); 742bool dataSourceChanged = dataSource != newDataSource; 825if (this.dataSource is IComponent) { 826((IComponent) this.dataSource).Disposed -= new EventHandler(DataSourceDisposed); 829ISupportInitializeNotification dsInit = (this.dataSource as ISupportInitializeNotification); 843if (this.dataSource is IComponent) { 844((IComponent) this.dataSource).Disposed += new EventHandler(DataSourceDisposed); 847ISupportInitializeNotification dsInit = (this.dataSource as ISupportInitializeNotification);