基本信息
源码名称:C# winform皮肤例子(有73个皮肤,每秒种切换一个,IrisSkin4)
源码大小:1.60M
文件格式:.zip
开发语言:C#
更新时间:2016-01-25
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍
有73个皮肤,每秒种切换一个,也可以手动控制切换

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.IO;
using System.Text;
using System.Windows.Forms;

namespace WindowsFormsApplication1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        public string spp = "Hello Worleeed!";
        Sunisoft.IrisSkin.SkinEngine iskin = new Sunisoft.IrisSkin.SkinEngine();

        private void Form1_Load(object sender, EventArgs e)
        {
            this.Text=this.GetType().GetField("spp").GetValue(this).ToString();
           // iskin.SkinFile = "Skins\\Wave.ssk";
           // iskin.Active = true;
            comboBox1.Items.Clear();
            foreach (FileInfo fi in new DirectoryInfo("Skins").GetFiles())
            {
                comboBox1.Items.Add(@"Skins\\"   fi.Name);
            }


           string s = "0";
           try
           {
                s = File.ReadAllText("num.txt");

           }
           catch { File.WriteAllText("num.txt", "0", Encoding.ASCII); }

           


           if (int.Parse(s) == comboBox1.Items.Count)
               s = "0";
            File.WriteAllText("num.txt", (int.Parse(s)   1).ToString(), Encoding.ASCII);
            comboBox1.SelectedIndex = int.Parse(s);


          iskin.SkinFile = comboBox1.Items[comboBox1.SelectedIndex].ToString();
          label1.Text = iskin.SkinFile;
           
          iskin.Active = true;
        }

        private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
        {
           // iskin.Active = false;
            iskin.SkinFile = comboBox1.SelectedText;
            label1.Text = comboBox1.SelectedIndex.ToString();
            iskin.Active = true;
        }

        private void timer1_Tick(object sender, EventArgs e)
        {
            Application.Restart();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            timer1.Enabled = !timer1.Enabled;
        }

        private void button2_Click(object sender, EventArgs e)
        {
          
            Application.Restart();
        }

        private void Form1_Click(object sender, EventArgs e)
        {
            timer1.Enabled = false;
        }
    }
}