【问题标题】:Dynamically Populate ComboBox Within A WPF ListView With Items使用项目动态填充 WPF ListView 中的 ComboBox
【发布时间】: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


    【解决方案1】:
    1. 您的场景需要一个 ViewModel。

    对应的C#代码(可以当作伪代码使用):

    public class ViewModel
        {
            public List<MyComboBoxItems> items { get; set; }
            public int outCustomValue2 { get; set; }
            public bool outCustomValue1 { get; set; }
    
            public ViewModel()
            {
                items = new List<MyComboBoxItems>();
                items.Add(new MyComboBoxItems());
                items.Add(new MyComboBoxItems());
                items.Add(new MyComboBoxItems());
                items.Add(new MyComboBoxItems());
            }
        }
    
        public class MyComboBoxItems
        {
            public List<MyComboBoxStrings> TestStrings { get; set; }       
    
            public MyComboBoxItems()
            {
                TestStrings = new List<MyComboBoxStrings>();
                TestStrings.Add(new MyComboBoxStrings("val1"));
                TestStrings.Add(new MyComboBoxStrings("val1"));
                TestStrings.Add(new MyComboBoxStrings("val1"));
                TestStrings.Add(new MyComboBoxStrings("val1"));
            }
        }
    
        public class MyComboBoxStrings
        {
            string _testString;
            public string TestString { get { return _testString; } }
    
            public MyComboBoxStrings(string value)
            {
                _testString = value;
            }
        }
    

    应用数据上下文:

     ViewModel vm = new ViewModel();
     myList.DataContext = vm;
    

    【讨论】:

    • 很好的答案(和例子)。我使用了你的一些想法,只是在数据源中为 ListView 创建了一个新的 Property(OfType String),并将 ComboBox 绑定到新的 Property。我将在上面发布我的解决方案作为编辑。
    猜你喜欢
    • 2011-07-02
    • 2012-11-10
    • 1970-01-01
    • 1970-01-01
    • 2014-12-06
    • 2019-03-23
    • 2015-04-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多