• 大小: 0.33M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2020-12-26
  • 语言: 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();
            }
        }
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      45056  2014-05-30 11:14  GDIPlusDemo\bin\Debug\GDIPlusDemo.exe

     文件      69120  2014-05-30 11:14  GDIPlusDemo\bin\Debug\GDIPlusDemo.pdb

     文件      11600  2014-05-30 11:14  GDIPlusDemo\bin\Debug\GDIPlusDemo.vshost.exe

     文件        490  2010-03-17 22:39  GDIPlusDemo\bin\Debug\GDIPlusDemo.vshost.exe.manifest

     文件      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

     文件        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

     文件        245  2013-01-10 17:13  GDIPlusDemo\Enums\ButtonStatus.cs

     文件        222  2013-01-09 19:43  GDIPlusDemo\Enums\Classstyle.cs

     文件        226  2013-01-10 17:37  GDIPlusDemo\Enums\MouseOperate.cs

     文件       1285  2013-01-09 19:45  GDIPlusDemo\Enums\Windowstyle.cs

............此处省略46个文件信息

评论

共有 条评论