Udostępnij za pośrednictwem


List Konstruktory

Definicja

Inicjuje nowe wystąpienie klasy List.

Przeciążenia

List()

Inicjuje nowe, puste wystąpienie List klasy.

List(ListItem)

Inicjuje List nowe wystąpienie klasy, biorąc określony ListItem obiekt jako początkową zawartość nowego Listobiektu .

List()

Inicjuje nowe, puste wystąpienie List klasy.

public:
 List();
public List ();
Public Sub New ()

Dotyczy

List(ListItem)

Inicjuje List nowe wystąpienie klasy, biorąc określony ListItem obiekt jako początkową zawartość nowego Listobiektu .

public:
 List(System::Windows::Documents::ListItem ^ listItem);
public List (System.Windows.Documents.ListItem listItem);
new System.Windows.Documents.List : System.Windows.Documents.ListItem -> System.Windows.Documents.List
Public Sub New (listItem As ListItem)

Parametry

listItem
ListItem

ListItem Obiekt określający początkową zawartość nowego Listobiektu .

Przykłady

W poniższym przykładzie pokazano użycie tego konstruktora.

// This line uses the ListItem constructor to create a new ListItem
// and initialize it with the specified Paragraph.
ListItem lix = new ListItem(new Paragraph(new Run("ListItem text...")));
// This line uses the List constructor to create a new List and populate
// it with the previously created ListItem.
List listx = new List(lix);
' This line uses the ListItem constructor to create a new ListItem
' and initialize it with the specified Paragraph.
Dim lix As New ListItem(New Paragraph(New Run("ListItem text...")))
' This line uses the List constructor to create a new List and populate
' it with the previously created ListItem.
Dim listx As New List(lix)

Dotyczy