9 references to DataSourceGroup
System.Windows.Forms.Design (9)
System\ComponentModel\Design\DataSourceGroupCollection.cs (8)
14
public int Add(
DataSourceGroup
value) => List.Add(value);
16
public int IndexOf(
DataSourceGroup
value) => List.IndexOf(value);
18
public void Insert(int index,
DataSourceGroup
value) => List.Insert(index, value);
20
public bool Contains(
DataSourceGroup
value) => List.Contains(value);
22
public void CopyTo(
DataSourceGroup
[] array, int index) => List.CopyTo(array, index);
24
public void Remove(
DataSourceGroup
value) => List.Remove(value);
26
public
DataSourceGroup
? this[int index]
28
get => List[index] as
DataSourceGroup
;
System\ComponentModel\Design\DataSourceProviderService.cs (1)
18
public abstract
DataSourceGroup
InvokeAddNewDataSource(IWin32Window parentWindow, FormStartPosition startPosition);