我的问题与使用Prism / MVVM的Win Store App开发有关。我使用带有几个GridViewItem的GridView。在GridView的SelectionChanged上,我捕获事件以找出选择了哪个GridViewItem。参数以这种格式传递给ViewModel:
Private Function ExecuteAction(ByVal sender As Object, ByVal parameter As Object) As Object Implements IAction.Execute
在VB.Net的命令窗口中,我有这个(在程序休息期间):
>? parameter.addeditems
{<Windows Runtime type>}
Count *: 1
IsReadOnly *: False
Item: In order to evaluate an indexed property, the property must be qualified and the arguments must be explicitly supplied by the user.
Interface View: Expanding will show discovered interfaces
我正在寻找&#34;添加项目&#34;并且additems列表中应该(并且有?)一个对象。但我无法用命令
来实现它parameter.addeditems(0)
我无法用
来达到目标parameter.addeditems.item(0)
这与参数.addeditems的Count属性后面的星号有什么关系吗?
如何获得参数中传递的值?