.NET WinForm中给DataGridView自定义ToolTip并设置ToolTip的样式

.NET WinForm中的DataGridView为程序开发提供了诸多的便利,我们不需要做许多额外的工作就可以获得一些基础功能,例如点击列标题排序、行选择功能、改变列宽和行宽,以及单元格内容的自动ToolTip功能等。但DataGridView给我们带来这些开发便利的同时也制造了一些小麻烦,例如对于单元格的自动ToolTip功能,我们如何才能自定义ToolTip提示框的样式呢?这里有一段代码可以帮助我们完成这个功能。

  首先你需要在窗体上添加一个ToolTip控件,然后参考下面的代码给你的DataGridView添加CellMouseMove和MouseLeave事件,同时还需要给ToolTip控件添加Draw事件以定义ToolTip的具体呈现。

复制代码
public   partial   class  MainForm : Form
{
    
private   int  cellColumnIndex  =   - 1 , cellRowIndex  =   - 1 ;

    
public  MainForm()
    {
        InitializeComponent();

        
this .testDataGridView.ShowCellToolTips  =   false ;
        
this .toolTip.AutomaticDelay  =   0 ;
        
this .toolTip.OwnerDraw  =   true ;
        
this .toolTip.ShowAlways  =   true ;
        
this .toolTip.ToolTipTitle  =   " Custom Tooltip:  " ;
        
this .toolTip.UseAnimation  =   false ;
        
this .toolTip.UseFading  =   false ;
    }

    
private   void  testDataGridView_CellMouseMove( object  sender, DataGridViewCellMouseEventArgs e)
    {
        
if  (e.RowIndex  <   0   ||  e.ColumnIndex  <   0 )
        {
            
return ;
        }

        
this .toolTip.Hide( this .testDataGridView);
        
this .cellColumnIndex  =  e.ColumnIndex;
        
this .cellRowIndex  =  e.RowIndex;

        
if  ( this .cellColumnIndex  >=   0   &&   this .cellRowIndex  >=   0 )
        {
            Point mousePos 
=  PointToClient(MousePosition);
            
string  tip  =   " Tip is  "   +   this .testDataGridView[ this .cellColumnIndex,  this .cellRowIndex].Value.ToString();
            
this .toolTip.Show(tip,  this .testDataGridView, mousePos);
        }
    }

    
private   void  testDataGridView_MouseLeave( object  sender, EventArgs e)
    {
        
this .toolTip.Hide( this .testDataGridView);
    }

    
private   void  toolTip_Draw( object  sender, DrawToolTipEventArgs e)
    {
        e.Graphics.FillRectangle(Brushes.AliceBlue, e.Bounds);
        e.Graphics.DrawRectangle(Pens.Chocolate, 
new  Rectangle( 0 0 , e.Bounds.Width  -   1 , e.Bounds.Height  -   1 ));
        e.Graphics.DrawString(
this .toolTip.ToolTipTitle  +  e.ToolTipText, e.Font, Brushes.Red, e.Bounds);
    }
}
复制代码

  testDataGridView是DataGridView的ID,toolTip是ToolTip的ID。


本文转自Jaxu博客园博客,原文链接:http://www.cnblogs.com/jaxu/archive/2011/08/01/2123898.html,如需转载请自行联系原作者


  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值