32 references to DataManager
System.Windows.Forms (32)
System\Windows\Forms\Controls\ComboBox\ComboBox.cs (12)
2712if (DataManager is not null && DataManager.Position != SelectedIndex) 2717DataManager.Position = SelectedIndex; 3084if (DataManager is not null && DataManager.Count != -1) 3086newItems = new object[DataManager.Count]; 3089newItems[i] = DataManager[i]!; 3113if (DataManager is not null) 3116SelectedIndex = DataManager.Position; 3371if (DataManager is not null) 3380PInvokeCore.SendMessage(this, PInvoke.CB_SETCURSEL, (WPARAM)DataManager.Position); 3384_selectedIndex = DataManager.Position;
System\Windows\Forms\Controls\ListBoxes\ListBox.cs (13)
1894if (DataManager is not null && DataManager.Position != SelectedIndex) 1901DataManager.Position = SelectedIndex; 1937if (SelectionMode != SelectionMode.None && DataManager is not null) 1939SelectedIndex = DataManager.Position; 1986if (DataManager is not null && DataManager.Count != -1) 1988newItems = new object[DataManager.Count]; 1991newItems[i] = DataManager[i]!; 2009if (DataManager is not null) 2012SelectedIndex = DataManager.Position; 2109if (DataManager is not null) 2118PInvokeCore.SendMessage(this, PInvoke.LB_SETCURSEL, (WPARAM)DataManager.Position);
System\Windows\Forms\Controls\ListControl\ListControl.cs (7)
149PropertyDescriptorCollection? props = DataManager?.GetItemProperties(); 317if (DataManager is not null && !string.IsNullOrEmpty(value)) 319if (!BindingMemberInfoInDataManager(DataManager, newValueMember)) 443if (DataManager is not null) 445descriptor = DataManager.GetItemProperties().Find(field, true); 687IList? currentList = DataManager?.List; 688bool currentManagerIsNull = DataManager is null;