请问C#的皮肤怎么导入???
刚学C#没多久还不会使用皮肤,下载了一些SKIN皮肤等但是不知道皮肤是怎么导入使用的,各位高手告诉我一下~~~最好详细点,俺很菜~~~

解决方案 »

  1.   

    你下载的都是什么皮肤,比如 DotNetSkin、IrisSkin、Skin++ 什么的,把名字贴出来。不同的皮肤的用法是不同的。
      

  2.   

    <%@ Page Language="C#" Theme="皮肤名" ... %>
      

  3.   


    用的什么皮肤控件啊?
    一般得先引用dll 然后写皮肤路径
      

  4.   

    看样子是IrisSkin1)在新建了Project后导入IrisSkin2.dll
    2)在Form1类声明中private Sunisoft.IrisSkin.SkinEngine skinEngine;
    3)在Form1的InitializeComponent()方法初始化SkinEngine
    4)System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
      this.skinEngine = new Sunisoft.IrisSkin.SkinEngine(((System.ComponentModel.Component)(this)));//记住这里的参数是这个程序的主窗口
    5)然后在Load 事件中引用ssk文件(IrisSkin的皮肤)
      this.skinEngine.SkinFile = "office2007.ssk";
    6)运行程序就可以了