• 大小: 0.33M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2020-12-14
  • 语言: C#
  • 标签: 皮肤  C#  c  桌面  窗体  

资源简介

 C#实现窗体的桌面的皮肤应用,程序美化

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace GDIPlusDemo
{
    /// 
    /// 拥有ToolTip属性的Form基类
    /// 

    public class Formbase : Form
    {
        private ToolTip _toolTip;

        public Formbase()
            : base()
        {
            _toolTip = new ToolTip();
        }

        internal ToolTip ToolTip
        {
            get { return _toolTip; }
        }

        protected override void Dispose(bool disposing)
        {
            base.Dispose(disposing);
            if (disposing)
            {
                _toolTip.Dispose();
            }
        }
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2013-01-11 22:54  GDIPlusDemo\
     目录           0  2013-01-09 21:50  GDIPlusDemo\bin\
     目录           0  2013-01-11 22:55  GDIPlusDemo\bin\Debug\
     文件       45056  2013-01-11 22:55  GDIPlusDemo\bin\Debug\GDIPlusDemo.exe
     文件       54784  2013-01-11 22:55  GDIPlusDemo\bin\Debug\GDIPlusDemo.pdb
     文件       11600  2013-01-11 22:55  GDIPlusDemo\bin\Debug\GDIPlusDemo.vshost.exe
     目录           0  2013-01-09 21:50  GDIPlusDemo\bin\Debug\Res\
     目录           0  2013-01-11 22:52  GDIPlusDemo\bin\Debug\Res\FormBkg\
     文件       60136  2012-10-23 16:30  GDIPlusDemo\bin\Debug\Res\FormBkg\bkg_flower.jpg
     文件       50010  2012-10-23 16:38  GDIPlusDemo\bin\Debug\Res\FormBkg\bkg_owl.jpg
     文件       68963  2012-10-23 16:44  GDIPlusDemo\bin\Debug\Res\FormBkg\bkg_stars.jpg
     文件        3279  2012-10-16 12:14  GDIPlusDemo\bin\Debug\Res\fringe_bkg.png
     目录           0  2013-01-11 17:23  GDIPlusDemo\bin\Debug\Res\SystemButton\
     文件         952  2012-10-10 20:07  GDIPlusDemo\bin\Debug\Res\SystemButton\close_highlight.png
     文件         843  2012-10-10 20:07  GDIPlusDemo\bin\Debug\Res\SystemButton\close_normal.png
     文件        1008  2012-09-26 11:31  GDIPlusDemo\bin\Debug\Res\SystemButton\close_press.png
     文件         735  2012-10-15 11:51  GDIPlusDemo\bin\Debug\Res\SystemButton\max_highlight.png
     文件         591  2012-10-15 11:51  GDIPlusDemo\bin\Debug\Res\SystemButton\max_normal.png
     文件         734  2012-10-15 11:51  GDIPlusDemo\bin\Debug\Res\SystemButton\max_press.png
     文件         567  2012-10-10 20:08  GDIPlusDemo\bin\Debug\Res\SystemButton\min_highlight.png
     文件         424  2012-10-10 20:08  GDIPlusDemo\bin\Debug\Res\SystemButton\min_normal.png
     文件         581  2012-10-10 20:07  GDIPlusDemo\bin\Debug\Res\SystemButton\min_press.png
     文件        3503  2012-10-15 11:51  GDIPlusDemo\bin\Debug\Res\SystemButton\restore_highlight.png
     文件        3449  2012-10-15 11:51  GDIPlusDemo\bin\Debug\Res\SystemButton\restore_normal.png
     文件        3512  2012-10-15 11:51  GDIPlusDemo\bin\Debug\Res\SystemButton\restore_press.png
     文件         767  2012-09-26 11:36  GDIPlusDemo\bin\Debug\Res\SystemButton\setup_highlight.png
     文件         619  2012-09-26 11:36  GDIPlusDemo\bin\Debug\Res\SystemButton\setup_normal.png
     文件         776  2012-09-26 11:36  GDIPlusDemo\bin\Debug\Res\SystemButton\setup_press.png
     文件         915  2012-10-15 11:51  GDIPlusDemo\bin\Debug\Res\SystemButton\skin_highlight.png
     文件         827  2012-10-15 11:51  GDIPlusDemo\bin\Debug\Res\SystemButton\skin_normal.png
     文件         927  2012-10-15 11:51  GDIPlusDemo\bin\Debug\Res\SystemButton\skin_press.png
............此处省略38个文件信息

评论

共有 条评论