急急急~请问c#中怎么在picturebox控件中让几张图片像幻灯片一样自动播放,已经将图片添加到resource。
需要程序启动时时picturebox中的图片自动播放,添加一个timer,如何调用resource中的资源,本人新手求详细解答无尽感谢!namespaceWindowsF...
需要程序启动时时picturebox中的图片自动播放,添加一个timer,如何调用resource中的资源,本人新手求详细解答 无尽感谢!
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
private int imageNum = -1;
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
this.ControlBox = true;
this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
}
private void timer1_Tick(object sender, EventArgs e)
{
imageNum = (imageNum + 1) % 7;
imagePictureBox.Image = (Image)
(Properties.Resources.ResourceManager.GetObject(
string.Format("image{0}", imageNum)));
}
}
}
这是代码,请问有什么问题吗,点运行后,图片没有显示也没有更换 展开
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
private int imageNum = -1;
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
this.ControlBox = true;
this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
}
private void timer1_Tick(object sender, EventArgs e)
{
imageNum = (imageNum + 1) % 7;
imagePictureBox.Image = (Image)
(Properties.Resources.ResourceManager.GetObject(
string.Format("image{0}", imageNum)));
}
}
}
这是代码,请问有什么问题吗,点运行后,图片没有显示也没有更换 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询