【发布时间】:2016-03-18 23:54:28
【问题描述】:
我有一个绑定到数据源的 WPF ListView。在 ListView 中动态创建了 ComboBoxes,我想将其绑定到另一个数据源以提供 Items,但 SelectedIndex 来自第一个数据源(请参阅下面的 XAML)。
目前,如果 ComboBoxItems 被静态编码到 XAML 中(如下面的 XAML 中注释掉),则该功能可以正常工作。但是,我想动态提供 ComboBoxItems(字符串列表),因此我可以通过以下方式扩展列表:1)绑定到自定义类(请参阅下面的代码隐藏),或 2)在 WindowInitialized 中设置 DataSource或 WindowRendered 事件。
我已经尝试了两种方法,但这里我展示了我尝试的第一种方法的示例。下面的 XAML 和 VB 代码没有错误,但 ComboBoxes 显示为空的下拉菜单。有什么想法吗?
此外,字符串列表实际上只是一个简单字符串的简单列表(但我想把它做成一个长列表)。有没有更简单的方法来填充 ComboBox? (我个人认为第二种方法更简单,只是创建一个 VB 列表并设置数据源,但结果相同)
编辑:我的解决方案是简单地在 ListView 的数据源中创建另一个 Property(OfType String) 并将 ComboBox 绑定到新属性。以下是新属性的外观:
Public ReadOnly Property myList As List(Of String)
Get
Dim cboxList As New List(Of String)
For...
cboxList.Add(New String("..."))
Next
Return cboxList
End Get
End Property
XAML:
<ListView IsSynchronizedWithCurrentItem="True" Margin="11,5,0,0" x:Name="myList" HorizontalAlignment="Left" Width="130" BorderBrush="{x:Null}" BorderThickness="0" Background="White" Height="240" VerticalAlignment="Top" Grid.Column="1" >
<ListView.View>
<GridView AllowsColumnReorder="False">
<GridViewColumn Header="Freq" Width="55">
<GridViewColumn.CellTemplate>
<DataTemplate>
<ComboBox HorizontalContentAlignment="Center"
x:Name="_ListFrequencies"
ItemsSource="{Binding TestStrings}"
DisplayMemberPath="TestString"
IsEnabled="{Binding outCustomValue1, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"
SelectionChanged="_OnSelectionChanged"
SelectedIndex="{Binding outCustomValue2, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"
FontSize="10"/>
<!--
<ComboBoxItem Content="test"/>
<ComboBoxItem Content="test"/>
<ComboBoxItem Content="test"/>
-->
</DataTemplate>
</GridViewColumn.CellTemplate>
</GridViewColumn>
</GridView>
</ListView.View>
</ListView>
代码隐藏
Public Class MyComboBoxItems
Public Property TestStrings() As List(Of MyComboBoxStrings)
Public Function MyComboBoxItems()
TestStrings = New List(Of MyComboBoxStrings)
End Function
End Class
Public Class MyComboBoxStrings
Public ReadOnly Property TestString As String
Get
Return "test"
End Get
End Property
End Class
【问题讨论】:
标签: wpf xaml listview binding combobox