C# WinForm界面美化--使用IrisSkin实现换肤功能

    WinForm界面使用IrisSkin,能够说作到了一键美化,固然美化的效果仁者见仁智者见智,能够挑选本身喜欢的。html

    一、IrisSkin下载地址:http://www.pc6.com/softview/SoftView_70918.html#download测试

    二、将下载的文件放到Debug下面。this

    三、新建一个WinForm窗体,命名为Main:spa

     四、Main代码实现以下:code

        SkinEngine skinEngine = new SkinEngine();

        public Main()
        {
            InitializeComponent();

            string[] files = Directory.GetFiles(Path.Combine(Application.StartupPath, @"IrisSkin4\Skins"), "*.ssk", SearchOption.AllDirectories);
            if (files != null && files.Length > 0)
            {
                //变量
                int index = 0;      //按钮序号
                int space = 10;     //按钮间隔
                int btnWidth = 130; //按钮宽度
                int btnHeight = 30; //按钮高度
                int btnCount = 7;   //每行按钮个数

                //每行显示7个按钮
                for (int rows = 0; rows < (files.Length % btnCount == 0 ? files.Length / btnCount : (files.Length / btnCount) + 1); rows++)
                {
                    //最后一行的按钮个数
                    int lastCout = files.Length % btnCount;
                    //生成按钮
                    if (index < (files.Length / btnCount) * btnCount)
                    {
                        for (int cols = 0; cols < btnCount; cols++)
                        {
                            Button btn = new Button
                            {
                                Location = new Point(cols * btnWidth + (cols + 1) * space, rows * btnHeight + (rows + 1) * space),
                                Width = btnWidth,
                                Height = btnHeight
                            };
                            string path = files[index];
                            string btnName = path.Substring(files[index].LastIndexOf(@"\") + 1);
                            btn.Text = btnName;
                            btn.Click += (object sender, EventArgs e) => { skinEngine.SkinAllForm = true; skinEngine.SkinFile = path; tsslSkinFile.Text = Path.Combine(Application.StartupPath, btnName); };
                            Controls.Add(btn);
                            index++;
                        }
                    }
                    else
                    {
                        for (int cols = 0; cols < lastCout; cols++)
                        {
                            Button btn = new Button
                            {
                                Location = new Point(cols * btnWidth + (cols + 1) * space, rows * btnHeight + (rows + 1) * space),
                                Width = btnWidth,
                                Height = btnHeight
                            };
                            string path = files[index];
                            string btnName = path.Substring(files[index].LastIndexOf(@"\") + 1);
                            btn.Text = btnName;
                            btn.Click += (object sender, EventArgs e) => { skinEngine.SkinAllForm = true; skinEngine.SkinFile = path; tsslSkinFile.Text = Path.Combine(Application.StartupPath, btnName); };
                            this.Controls.Add(btn);
                            index++;
                        }
                    }
                }
            }
        }

        private void button1_Click(object sender, EventArgs e)
        {
            MessageBox.Show("Hello World.", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
        }

    五、换肤渲染前效果:orm

     六、换肤如选DeepCyan.ssk,渲染的效果以下:htm

    注:不想被渲染的控件,能够设其Tag属性值为9999,如测试区的DataGridView就设了此项。blog

    好了,分享就到此结束了,但愿对有此须要的人有一些帮助。ssl

相关文章
相关标签/搜索