3 types derived from ListControl
System.Windows.Forms (2)
System\Windows\Forms\Controls\ComboBox\ComboBox.cs (1)
26public partial class ComboBox : ListControl
System\Windows\Forms\Controls\ListBoxes\ListBox.cs (1)
25public partial class ListBox : ListControl
System.Windows.Forms.Tests (1)
System\Windows\Forms\ListControlTests.cs (1)
2904public class SubListControl : ListControl
12 references to ListControl
System.Windows.Forms (4)
System\Windows\Forms\Controls\ListControl\ListControlConvertEventHandler.cs (2)
7/// Represents a method that will handle the <see cref="ListControl.Format"/> event of a <see cref="ListControl"/>.
System\Windows\Forms\Internal\ItemArray.cs (2)
26private readonly ListControl _listControl; 29public ItemArray(ListControl listControl)
System.Windows.Forms.Design (6)
System\Windows\Forms\Design\FormatStringDialog.cs (2)
18private ListControl? _listControl; 57public ListControl ListControl
System\Windows\Forms\Design\FormatStringEditor.cs (2)
24ListControl? listControl = component as ListControl;
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)
System.Windows.Forms.Design.Tests (1)
EnsureEditorsTests.cs (1)
107[InlineData(typeof(ListControl), "FormatString", typeof(FormatStringEditor))]
System.Windows.Forms.Tests (1)
System\Windows\Forms\ListControlTests.cs (1)
2378public void ListControl_GetItemText_Invoke_ReturnsExpected(ListControl control, object item, string expected)