Aracılığıyla paylaş


List Oluşturucular

Tanım

List sınıfının yeni bir örneğini başlatır.

Aşırı Yüklemeler

List()

sınıfının yeni, boş bir örneğini List başlatır.

List(ListItem)

Sınıfının yeni bir örneğini List başlatır ve belirtilen ListItem nesneyi yeni Listöğesinin ilk içeriği olarak alır.

List()

sınıfının yeni, boş bir örneğini List başlatır.

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

Şunlara uygulanır

List(ListItem)

Sınıfının yeni bir örneğini List başlatır ve belirtilen ListItem nesneyi yeni Listöğesinin ilk içeriği olarak alır.

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)

Parametreler

listItem
ListItem

ListItem Yeni Listöğesinin ilk içeriğini belirten bir nesne.

Örnekler

Aşağıdaki örnekte bu oluşturucunun kullanımı gösterilmektedir.

// 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)

Şunlara uygulanır