我想提供folder path
并从该文件夹路径如果folder contains 3 images
我希望display those 3 images
进入StackPanel WPF Form
我尝试了类似下面的内容,它适用于一个图像但是如何加载来自给定文件夹的所有图像?
<Window x:Class="wpfBug.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Window1" Height="300" Width="300" Loaded="Window_Loaded">
<StackPanel Name="sp">
</StackPanel>
</Window>
private void Window_Loaded(object sender, RoutedEventArgs e)
{
Image i = new Image();
BitmapImage src = new BitmapImage();
src.BeginInit();
src.UriSource = new Uri("mypic.png", UriKind.Relative);
// how to load all images from given folder?
src.EndInit();
i.Source = src;
i.Stretch = Stretch.Uniform;
//int q = src.PixelHeight; // Image loads here
sp.Children.Add(i);
}
答案 0 :(得分:2)
您应该使用如下所示的ItemsControl
。它使用垂直StackPanel作为其项目的默认面板。
<ItemsControl x:Name="imageItems">
<ItemsControl.ItemTemplate>
<DataTemplate>
<Image Source="{Binding}" Margin="5"/>
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
像这样设置ItemsControl的ItemsSource
:
imageItems.ItemsSource = Directory.EnumerateFiles(FOLDERPATH, "*.png");
从路径字符串到ImageSource
的转换是通过WPF中的内置类型转换执行的。
您可以使用不同的ItemsPanel:
<ItemsControl ...>
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel Orientation="Horizontal"/>
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
...
</ItemsControl>