0

当我单击 datagridview 中的单元格时,根据我的功能,将打开一个对话框。我填充对话框中的所有值并将对话框值动态存储到对象中。

其他行遵循相同的过程。

现在我应该如何坚持所有的对象值?

4

1 回答 1

0

您可以尝试将它们保存在列表中

假设您的对象的名称是 myObject ,具有属性、Id、Name 和 Amount

然后每次保存对象时,您都可以将其添加到该列表中:

 Dim myList As New List(Of myObject)

' Fill your object with dialog values
dim tempObj as new myObject
tempObj.Id=
tempObj.Name=
tempObj.Amount=


'When you want to save the object'
 myList .Add(tempObj)
'You can do all together and avoid the creation of tempObj:
 'myList .Add(New myObject() With {.Id= 10,.Name="dad",.Amount=122})

如果您需要更多帮助,您需要提供更多信息。

于 2012-11-05T13:24:24.413 回答