循环浏览图像文件夹并逐个显示图像
本文关键字:图像 显示 显示图 浏览 文件夹 循环 | 更新日期: 2023-09-27 17:55:20
我是c#和WPF的新手,并尝试构建一个应用程序,该应用程序循环访问文件夹并逐个显示其中的图像。当显示最后一个时,它需要再次显示第一个。
我尝试将所有文件命名为 1.jpg、2.jpg 等等,然后只是遍历图片数量。但是如果我删除一个,那么它会给出错误。
有没有更好的方法来解决这个问题?
我正在使用 C# 和一个 WPF 窗口,网格内有一个图像。
任何帮助将不胜感激!
编辑:当前代码
private string[] files;
private System.Timers.Timer timer;
private int counter;
private int Imagecounter;
public IntroScreen()
{
InitializeComponent();
this.Loaded += new RoutedEventHandler(this.MainWindow_Loaded);
}
private void MainWindow_Loaded(object sender, RoutedEventArgs e)
{
setupPics();
}
private void setupPics()
{
timer = new System.Timers.Timer();
timer.Elapsed += new ElapsedEventHandler(timer_Tick);
timer.Interval = (2000);
timer.Enabled = true;
timer.Start();
files = Directory.GetFiles("../../Resources/Taken/", "*.jpg", SearchOption.TopDirectoryOnly);
Imagecounter = files.Length;
counter = 0;
}
private void timer_Tick(object sender, EventArgs e)
{
counter++;
Dispatcher.BeginInvoke(DispatcherPriority.Input, new ThreadStart(() =>
{
Picture.Source = new BitmapImage(new Uri(files[counter - 1], UriKind.Relative));
}));
if (counter == Imagecounter)
{
counter = 0;
}
}
这是不起作用的,它找到文件夹中的项目,但图像没有改变。
它不会返回错误,图像只是不显示。
有人有什么建议吗?
以下使用 RX 对我有用。
哈姆勒
<Image Grid.Row="1" Source="{Binding AppViewModel.MainImageSource}" Width="400" Stretch="Uniform" Margin="{StaticResource MarginNormalControl}" />
查看型号:
SlideshowImages = ( from path in Directory.EnumerateFiles( pathSlideshow )
select new Uri( path ) ).ToList();
if ( SlideshowImages.Any() )
{
SlideshowIndex = 0;
var timer = Observable.Interval( TimeSpan.FromSeconds( 2 ) ).TimeInterval();
timer.Subscribe( _ =>
{
++SlideshowIndex;
if ( SlideshowIndex >= SlideshowImages.Count() )
SlideshowIndex = 0;
MainImageSource = SlideshowImages[SlideshowIndex];
} );
}