c#幻灯片源代码仅供参考

时间:2014-03-26 14:02:57
【文件属性】:

文件名称:c#幻灯片源代码仅供参考

文件大小:45KB

文件格式:RAR

更新时间:2014-03-26 14:02:57

c#幻灯片源代码

c#幻灯片源代码 public void test() { string path=(@"C:\\Documents and Settings\Administrator\桌面\img"); DirectoryInfo di = new DirectoryInfo(path); FileInfo[] fi = di.GetFiles("*.jpg"); progressBar1.Maximum = fi.Length; //progressBar1.Value = 0; int i = 0; foreach (FileInfo f in fi) { pictureBox1.ImageLocation = f.FullName; progressBar1.Value = ++i; //string a = Convert.ToString((i / progressBar1.Maximum) * 100 + "%"); textBox1.Text = Convert.ToString((i * 100 / progressBar1.Maximum) + "%"); Thread.Sleep(1000); }


【文件预览】:
幻灯片1
----幻灯片1.suo(18KB)
----幻灯片1.sln(920B)
----幻灯片1()
--------Form1.cs(2KB)
--------bin()
--------obj()
--------Form2.resx(6KB)
--------Form2.Designer.cs(1KB)
--------Properties()
--------Program.cs(491B)
--------幻灯片1.csproj(4KB)
--------Form1.Designer.cs(7KB)
--------Form1.resx(6KB)
--------Form2.cs(360B)

网友评论