-1
我想創建一個簡單的圖像幻燈片,當定時器開關時,它將切換到picturebox的下一個索引(並將循環),但具有淡入淡出效果。它如何在C#中完成?C#中的圖像滑塊?
當前代碼不切換圖像?而且 - 我如何創建淡入淡出效果?
我創建了一個間隔爲5,000毫秒的簡單定時器,在啓動時啓用它。
private void timerImage_Tick(object sender, EventArgs e)
{
if (pictureBox1.Image.Equals(InnovationX.Properties.Resources._1))
{
pictureBox1.Image = InnovationX.Properties.Resources._2;
}
else if (pictureBox1.Image.Equals(InnovationX.Properties.Resources._2))
{
pictureBox1.Image = InnovationX.Properties.Resources._3;
}
else
{
pictureBox1.Image = InnovationX.Properties.Resources._1;
}
}
純C#或使用WPF? – Sharath
@Sharath我從來沒有使用WPF,但是更容易理解。 –
您可能需要使picturebox無效。我也會轉向另一種比較。 –