我有一个列表视图,其中项目是使用ItemsSource
. 这ItemsSource
是本地类类型的列表。
我需要作为CommandParameter
选定项目发送DataType
。
有人可以帮我弄这个吗?
代码:(此代码在 App.xaml 中,数据模板在 itemsTemplate 标记内)
<Application.Resources>
<DataTemplate x:Key="xxx" DataType="BL:DeviceInfo">
<StackPanel>
<Button Command="{Binding DataContext.SelectDeviceCommand RelativeSource={RelativeSource ancestorType=ListView}} CommandParameter="{???????}" />
</StackPanel>
</DataTemplate>
</Application.Resources>
我想将 SelectedItem 作为 Deviceinfo 发送,它是列表项目的类型,即列表视图的项目源。