30 references to DataManager
System.Windows.Forms (30)
winforms\Managed\System\WinForms\ComboBox.cs (12)
2724if (this.DataManager != null && DataManager.Position != SelectedIndex) { 2727this.DataManager.Position = this.SelectedIndex; 3030if (this.DataManager != null && this.DataManager.Count != -1) { 3031newItems = new object[this.DataManager.Count]; 3033newItems[i] = this.DataManager[i]; 3055if (this.DataManager != null) 3058this.SelectedIndex = this.DataManager.Position; 3295if (this.DataManager != null) { 3307SendMessage(NativeMethods.CB_SETCURSEL, DataManager.Position, 0); 3310selectedIndex = DataManager.Position;
winforms\Managed\System\WinForms\ListBox.cs (13)
1895if (this.DataManager != null && DataManager.Position != SelectedIndex) { 1901this.DataManager.Position = this.SelectedIndex; 1939if (SelectionMode != SelectionMode.None && this.DataManager != null) 1940this.SelectedIndex = this.DataManager.Position; 1993if (this.DataManager != null && this.DataManager.Count != -1) { 1994newItems = new object[this.DataManager.Count]; 1996newItems[i] = this.DataManager[i]; 2013if (this.DataManager != null) { 2015this.SelectedIndex = this.DataManager.Position; 2093if (this.DataManager != null) { 2105SendMessage(NativeMethods.LB_SETCURSEL, DataManager.Position, 0);
winforms\Managed\System\WinForms\ListControl.cs (5)
169this.DataManager != null && 171PropertyDescriptorCollection props = this.DataManager.GetItemProperties(); 754IList currentList = this.DataManager != null ? this.DataManager.List : null; 755bool currentManagerIsNull = this.DataManager == null;