将列表框数据绑定到列表<string []> </string []>

时间:2012-09-13 13:55:45

标签: c# wpf xaml data-binding listbox

我很难通过XAML尝试将类型为List的属性绑定到ListBox。请注意,该列表包含字符串数组(string [])。

因此代码的XAML部分如下所示:

<ListBox Height="373" HorizontalAlignment="Left" Margin="9,65,0,0" Name="reservoirList" VerticalAlignment="Top" Width="546" 
                 ItemsSource="{Binding Wells}">
</ListBox>

并在viewModel上:

public ObservableCollection<string[]> Wells {
            get { return new ObservableCollection<string[]>(getWellsWithCoords()); }            
        }

其中getWellsWithCoords()创建一个string []列表。

当我运行我看到的应用程序时 - 这是有道理的:

string[] array
string[] array 
....

是否可以以这种方式更改XAML代码,以便在每一行上自动更改 我看到了Wells列表中每个元素的n个值,即:

well1 value11 value12
well2 value21 value22

2 个答案:

答案 0 :(得分:3)

将模板添加到列表框中:

<ListBox Height="373" HorizontalAlignment="Left" Margin="9,65,0,0" Name="reservoirList" VerticalAlignment="Top" Width="546" ItemsSource="{Binding Wells}">
<ListBox.ItemTemplate>
    <DataTemplate>
        <!--Here you bind the array-->
        <ItemsControl ItemsSource="{Binding}">
            <ItemsControl.ItemsPanel>
                <ItemsPanelTemplate>
                    <StackPanel Orientation="Horizontal" />
                </ItemsPanelTemplate>
            </ItemsControl.ItemsPanel>
            <ItemsControl.ItemTemplate>
                <!--Here you bind the value of each string-->
                <DataTemplate>
                    <TextBlock Text="{Binding}" Margin="5,0"/>
                </DataTemplate>
            </ItemsControl.ItemTemplate>
        </ItemsControl>
    </DataTemplate>
</ListBox.ItemTemplate>

答案 1 :(得分:0)

您可以实现自己的类来保存此数据:

public class WellInfo
{
    private string[] _infos;
    public WellInfo(string[] infos)
    {
        this._infos = infos;
    }
    public string DisplayValue
    {
        get { return this._infos.Aggregate((current, next) => current + ", " + next); }
    }
}

您收藏中的用途:

public IEnumerable<WellInfo> Wells
{
    get { return getWellsWithCoords().Select(x => new WellInfo(x)); }            
}

并在XAML中:

<ListBox 
    ItemsSource="{Binding Wells}" 
    DisplayMemberPath="DisplayValue" />