如何检索存储在ListBox中的对象的属性

时间:2016-05-14 19:47:05

标签: vb.net

我在Visual Studio 2010中使用VB.NET,我创建了一个类“Item”,并且我已经使用此类的多个实例填充了ListBox。现在对于ListBox中的每个对象,我想调用一个get方法,并检索一个属性。

这就是我的尝试:

Public Function calTotal() As Decimal

    For x = 0 To (ItemObjects.Items.Count - 1)
        Total = ItemObjects.Items(x). 'Right after i press dot, it should show me all the class methods
    Next

    Return 0
End Function

但它不让我看到它们。请注意,班级中的所有方法都是公开的,即使我将这些属性设置为公共,也是公开的。

第二个问题:我使用ListBox的原因有点像arrayList,LinkedList,Vector,但我不知道如何在VB.NET中使用或创建这些数据结构

0 个答案:

没有答案