0
我如何使用Addrange填充對象的列表視圖。對象是:通過AddRange填充列表視圖
public class Cable : StateObject
{
public int Id { get; set; }
public int CablePropertyId { get; set; }
public int Item { get; set; }
public int TagNo { get; set; }
public string GeneralFormat { get; set; }
public string EndString { get; set; }
public string CableRevision { get; set; }
public string FromBay { get; set; }
public string FromPanel { get; set; }
}
感謝
創建一個ListViewItem的數組,並將其添加到你的列表視圖。 –