tabcontrol在切换页面的时候经常用到

这里讲下如何让tabcontrol更好看

ref:http://blog.csdn.net/conmajia/article/details/7596718

http://wenku.baidu.com/link?url=y4BdtX3mOer4Hdin019jJpXJLi-2_ehmEo7i08cxEp1OR_3gb5CqaHrnNEB2iLQyNDqpkNtnuREmn4GWpur081mIPuNH-1184wLkFzsVuEq

一。 创建一个类,加引用,using什么的,TabControlEx的基类为System.Windows.Forms.TabControl

二。加代码

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

 namespace MyTabControl
 {
     public class TabControlEx : System.Windows.Forms.TabControl
     {
         Image backImage;
         public TabControlEx()
         {
             base.SetStyle(
                 ControlStyles.UserPaint |
                 ControlStyles.OptimizedDoubleBuffer |
                 ControlStyles.ResizeRedraw |
                 ControlStyles.SupportsTransparentBackColor,
                 true);
             base.Update();
             this.SizeMode = TabSizeMode.Fixed;
             , );
             backImage = new Bitmap(this.GetType(), "MyTabControl.bmp");
         }
         Form oldman;
         protected override void OnParentChanged(EventArgs e)
         {
             if (oldman == null) oldman = this.FindForm();
             oldman.Text = ].Text;
         }
         protected override void OnSelected(TabControlEventArgs e)
         {
             Parent.Text = e.TabPage.Text;
         }
         protected override void OnPaint(PaintEventArgs e)
         {
             e.Graphics.TextRenderingHint = System.Drawing.Text.TextRenderingHint.AntiAlias;
             ; i < this.TabCount; i++)
             {
                 //e.Graphics.DrawRectangle(Pens.Red, this.GetTabRect(i));
                 if (this.SelectedIndex == i)
                 {
                     e.Graphics.DrawImage(backImage, this.GetTabRect(i));
                 }
                 Rectangle bounds = this.GetTabRect(i);
                 PointF textPoint = new PointF();
                 SizeF textSize = TextRenderer.MeasureText(this.TabPages[i].Text, this.Font);
                 textPoint.X = bounds.X + (bounds.Width - textSize.Width) / ;
                 textPoint.Y = bounds.Bottom - textSize.Height - this.Padding.Y;
                 e.Graphics.DrawString(
                     this.TabPages[i].Text,
                     this.Font,
                     SystemBrushes.ControlLightLight,
                     textPoint.X,
                     textPoint.Y);
                 textPoint.Y--;
                 e.Graphics.DrawString(
                     this.TabPages[i].Text,
                     this.Font,
                     SystemBrushes.ControlText,
                     textPoint.X,
                     textPoint.Y);
                 if (this.ImageList != null)
                 {
                     int index = this.TabPages[i].ImageIndex;
                     string key = this.TabPages[i].ImageKey;
                     Image icon = , );
                     )
                     {
                         icon = this.ImageList.Images[index];
                     }
                     if (!string.IsNullOrEmpty(key))
                     {
                         icon = this.ImageList.Images[key];
                     }
                     e.Graphics.DrawImage(
                         icon,
                         bounds.X + (bounds.Width - icon.Width) / ,
                         bounds.Top + this.Padding.Y);
                 }
             }
         }
     }
 }

三。加imagelist,并且为tabcontrol里的tabpage设置imageindex和imageKey

四。将此类加入工具箱中,注意将该项目的属性里的调试改为外部程序调试

C#控件:TabControl的更多相关文章

  1. [C#开发小技巧]解决WinForm控件TabControl闪烁问题

    在用C#开发WinForm程序时,常发现TabControl出现严重的闪烁问题,这主要是由于TabControl控件在实现时会绘制默认的窗口背景.其实以下一段简单的代码可以有效的缓解该问题的发生.这就 ...

  2. C#控件TabControl隐藏page

    隐藏 这个需求其实就是TABCONTROL控件会有很多提前制作好的PAGE页面,每次软件启动不可能所有页面都显示出来,目前想了个比较简单的方法解决这个问题 首先定义一个List集合存储TABCONTR ...

  3. Access-自定义控件TabControl

    p{ font-size: 15px; } .alexrootdiv>div{ background: #eeeeee; border: 1px solid #aaa; width: 99%; ...

  4. C# Winform关于控件TabControl闪烁的问题

    自己重写了一个Form,然后再该form上放一个TabControl鼠标移上去会闪烁,经过网上查找解决方案,最后总算是解决了....下面附上代码: 重写一个TabControl代码如下: using ...

  5. WINFORM控件tabcontrol,隐藏,调用等等

    1先说显示项的控制, 第一个是selectedIndex属性这个实用性不是太强,但是如果不涉及到隐藏,删除,增加tabpage的话,也可以用. 第二个是selectedTab=tabPage1,这个属 ...

  6. Visual Studio中的TabControl控件的用法

    今天遇到了一个自己没遇到过的控件TabControl控件,所以找了点关于它的资料 TabControl属性 DisplayRect:只定该控件客户区的一个矩形  HotTrack:设置当鼠标经过页标签 ...

  7. .net中,控件(Name)属性或ID属性的常见命名规则

    控件名称 缩写 介绍 公共控件   Button btn 按钮 CheckBox chk 复选框 CheckedListBox ckl 显示一个项列表,其中每一项左侧都有一个复选框 ComboBox ...

  8. WPF学习(三)--Menu、TabControl和DataGrid控件介绍

    Menu Menu提供了菜单栏方式的多级菜单的管理和操作: 这里对Menu的样式不做任何的定制和管理 下面来对Menu进行测试: 将Menu添加到页面中 运行后,效果如下: 这里没有考虑界面效果和样式 ...

  9. WPF中viewmodel层怎样得到view层的TabControl控件对象?

    View层: <Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns: ...

  10. TabControl控件的美化

    文件下载:http://files.cnblogs.com/zfanlong1314/TabControlEX.rar 本文转载:http://www.cnblogs.com/lmlblog/arch ...

随机推荐

  1. Android系统用于Activity的标准Intent

    1 根据联系人ID显示联系人信息 Intent intent = new Intent(); intent.setAction(Intent.ACTION_VIEW);   //显示联系人信息 int ...

  2. spring容器IOC创建对象<三>

    问题?Spring的DI讲解.DI有几种注入方式.一.spring的DI:依赖注入给属性赋值DI定义:一个对象类的属性可以使用springDI(依赖注入)来进行赋值,但是并不是所有的类属性都适合spr ...

  3. java NIO ;mvn

    http://ifeve.com/java-nio-scattergather/ mvn introduction(install,conf, proxy,plugin,samples) http:/ ...

  4. sublimtext2 资源

    https://github.com/qljiong/soda-theme/blob/master/README.md http://my.oschina.net/ruochenchen/blog/9 ...

  5. 使用NSTimer过程中最大的两个坑

    坑1. retain cycle问题. 在一个对象中使用循环执行的nstimer时,若希望在对象的dealloc方法中释放这个nstimer,结局会让你很失望. 这个timer会导致你的对象根本不会被 ...

  6. php--yii框架表单验证

    在视图层利用表单小部件生成表单时,field只能是数据库中存在的, 例如: use yii\helpers\Html; use yii\widgets\ActiveForm; use yii\capt ...

  7. 设计模式:观察者模式(Observer)

    定  义:定义了一种一对多的依赖关系,让多个观察者对象同时监听某一主题对象.这个主题对象在状态发生 变化时,会通知所有观察者对象,使他们能够自动更新自己. 结构图: 抽象主题类: abstract c ...

  8. Mongoose在向集合中插入文档时的集合命名问题

    Mongoose使用结构化的模式应用到MongoDB集合,为MongoDB Node.js原生驱动程序提供了更多的功能和简化了数据库操作. 从创建连接到向数据库中写入一个条数据经历了以下步骤: 1.连 ...

  9. 使用Aspose.Cell控件实现Excel高难度报表的生成(三)

    在之前几篇文章中,介绍了关于Apsose.cell这个强大的Excel操作控件的使用,相关文章如下: 使用Aspose.Cell控件实现Excel高难度报表的生成(一) 使用Aspose.Cell控件 ...

  10. 在Ubuntu 14.04 上安装网易云音乐

    之前因为电脑有网络的原因,一直使用网页网易云音乐听歌,最近电脑没网络使用,才发现网易云音乐有linux版本,果断下载. 在Chrome浏览器中,登陆官网下载Linux版本中的Ubuntu 14.04 ...