3 types derived from ListControl
System.Windows.Forms (2)
System\Windows\Forms\Controls\ComboBox\ComboBox.cs (1)
26
public partial class ComboBox :
ListControl
System\Windows\Forms\Controls\ListBoxes\ListBox.cs (1)
25
public partial class ListBox :
ListControl
System.Windows.Forms.Tests (1)
System\Windows\Forms\ListControlTests.cs (1)
2904
public 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)
26
private readonly
ListControl
_listControl;
29
public ItemArray(
ListControl
listControl)
System.Windows.Forms.Design (6)
System\Windows\Forms\Design\FormatStringDialog.cs (2)
18
private
ListControl
? _listControl;
57
public
ListControl
ListControl
System\Windows\Forms\Design\FormatStringEditor.cs (2)
24
ListControl
? 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"/>
23
if (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)
2378
public void ListControl_GetItemText_Invoke_ReturnsExpected(
ListControl
control, object item, string expected)