32 references to DataManager
System.Windows.Forms (32)
System\Windows\Forms\Controls\ComboBox\ComboBox.cs (12)
2725if (DataManager is not null && DataManager.Position != SelectedIndex) 2730DataManager.Position = SelectedIndex; 3097if (DataManager is not null && DataManager.Count != -1) 3099newItems = new object[DataManager.Count]; 3102newItems[i] = DataManager[i]!; 3126if (DataManager is not null) 3129SelectedIndex = DataManager.Position; 3384if (DataManager is not null) 3393PInvokeCore.SendMessage(this, PInvoke.CB_SETCURSEL, (WPARAM)DataManager.Position); 3397_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;