绑定图像列表

时间:2017-06-09 14:12:30

标签: c# wpf image list binding

我试图将图像列表(List)绑定到StackPanel,我试图通过使用< Separator>来分隔这些图像。但遗憾的是它不起作用。有谁知道为什么? (我在wpf..so sry有点新秀)

我的代码: 代码背后:

            List<Image> v2 = new List<Image>();
        for (int i = 0; i < 10; i++)
        {
            Image v2image = new Image();
            v2image.BeginInit();

            v2image.Source = new BitmapImage(new Uri("http://static.lolskill.net/img/champions/64/xayah.png"));
            v2image.Width = 40;
            v2image.Height = 40;
            v2.Add(v2image);
        }

        BlueTeam.ItemsSource = v2;

XAML:

<Window x:Class="FML.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:local="clr-namespace:FML"
    mc:Ignorable="d"
    Title="MainWindow" Height="525.885" Width="809.974">
<Grid>
    <ItemsControl Grid.Column="0" x:Name="BlueTeam">
        <ItemsControl.ItemsPanel>
            <ItemsPanelTemplate>
                <StackPanel Orientation="Horizontal" >

                </StackPanel>
            </ItemsPanelTemplate>
        </ItemsControl.ItemsPanel>
        <ItemsControl.ItemTemplate>
            <DataTemplate>
                <StackPanel Orientation="Vertical" >
                    <Image Source="{Binding v2image.Source}"></Image>
                    <Separator Opacity="0" Height="20" Width="20"/>
                </StackPanel>
            </DataTemplate>
        </ItemsControl.ItemTemplate>   
    </ItemsControl>
</Grid>

Ty帮助我:D 顺便说一句:图像非常小。他们不是40宽度\高度

编辑: 它应该是如何工作的:http://imgur.com/a/bZbLf(当我使用只有Image的类时它会起作用)

这是它的工作原理:http://imgur.com/a/uptlo

1 个答案:

答案 0 :(得分:0)

您不应该使用List<Image>,而应该使用List<ImageSource>

var v2 = new List<ImageSource>();

for (int i = 0; i < 10; i++)
{
    v2.Add(new BitmapImage(
        new Uri("http://static.lolskill.net/img/champions/64/xayah.png")));
}

BlueTeam.ItemsSource = v2;

然后,您将在ItemTemplate中声明一个具有固定大小的Image控件,并通过Source="{Binding}"将其直接绑定到集合元素:

<ItemsControl.ItemTemplate>
    <DataTemplate>
        <Image Source="{Binding}" Width="40" Height="40" Margin="10"/>
    </DataTemplate>
</ItemsControl.ItemTemplate>   

不确定分隔符应该做什么。在上面的示例中,我只是设置了Image的Margin属性。