3 writes to DataSource
PresentationUI (1)
MS\Internal\Documents\CredentialManagerDialog.cs (1)
62_credListBox.DataSource = accountList;
System.Windows.Forms (2)
System\Windows\Forms\Controls\ComboBox\ComboBox.cs (1)
402set => base.DataSource = value;
System\Windows\Forms\Controls\ListBoxes\CheckedListBox.cs (1)
114set => base.DataSource = value;
9 references to DataSource
System.Windows.Forms (7)
System\Windows\Forms\Controls\ComboBox\ComboBox.cs (1)
401get => base.DataSource;
System\Windows\Forms\Controls\ListBoxes\CheckedListBox.cs (1)
113get => base.DataSource;
System\Windows\Forms\Controls\ListBoxes\ListBox.cs (3)
1275if (DataSource is not null) 1916if (DataSource is null) 2109if (DataSource is ICurrencyManagerProvider)
System\Windows\Forms\Controls\ListControl\ListControl.cs (2)
11[LookupBindingProperties(nameof(DataSource), nameof(DisplayMember), nameof(ValueMember), nameof(SelectedValue))] 312SetDataConnection(DataSource, newValueMember, force: false);
System.Windows.Forms.Design (2)
System\Windows\Forms\Design\ListControlStringCollectionEditor.cs (2)
10/// to prevent the string collection from being edited if <see cref="ListControl.DataSource"/> 23if (context?.Instance is ListControl control && control.DataSource is not null)