我是 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;
}
}
这不起作用,它会在文件夹中找到项目,但图像不会改变。
它不会返回错误,图像只是不显示。
有人有什么建议吗?