.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,如需转载请自行联系原作者


相关文章
|
6月前
|
开发框架 JSON .NET
ASP.NET Core 自定义配置警告信息
自定义配置警告信息需要在 startup 类中的 ConfigureService 方法中进行配置示例: // 注册 控制器服务 services.AddControllers(configure: setup => { setup.ReturnHttpNotAcceptable = true; ...
42 0
|
7月前
|
XML 存储 JSON
使用自定义XML配置文件在.NET桌面程序中保存设置
本文将详细介绍如何在.NET桌面程序中使用自定义的XML配置文件来保存和读取设置。除了XML之外,我们还将探讨其他常见的配置文件格式,如JSON、INI和YAML,以及它们的优缺点和相关的NuGet类库。最后,我们将重点介绍我们为何选择XML作为配置文件格式,并展示一个实用的示例。
96 0
|
4月前
|
XML API 数据库
七天.NET 8操作SQLite入门到实战 - 第六天后端班级管理相关接口完善和Swagger自定义配置
七天.NET 8操作SQLite入门到实战 - 第六天后端班级管理相关接口完善和Swagger自定义配置
|
5月前
|
Windows
基于.Net Core实现自定义皮肤WidForm窗口
基于.Net Core实现自定义皮肤WidForm窗口
48 0
|
5月前
|
编解码 JSON 算法
一个支持.Net 7的WinForm开源UI组件框架
一个支持.Net 7的WinForm开源UI组件框架
80 0
|
7月前
|
存储
.NET Core - 自定义配置数据源:低成本实现定制化配置方案
.NET Core - 自定义配置数据源:低成本实现定制化配置方案
|
7月前
.NET Core-自定义配置数据源
前面,我们学习了配置框架的4种配置方式,那么你知道如何实现自定义的配置数据源吗?知道如何低成本实现定制化配置方案吗?下面我们就一起来学习一下吧。
|
9月前
|
数据库 C#
C#,.net,winform导入Excel功能以及下载Excel文件到本地,并使用SqlBulkCopy把DataTable类型的数据写入到sqlserver数据库中
C#,.net,winform导入Excel功能以及下载Excel文件到本地,并使用SqlBulkCopy把DataTable类型的数据写入到sqlserver数据库中
208 0
|
10月前
|
C#
.NET Core反射获取带有自定义特性的类,通过依赖注入根据Attribute元数据信息调用对应的方法
.NET Core反射获取带有自定义特性的类,通过依赖注入根据Attribute元数据信息调用对应的方法
122 0
|
12月前
|
开发框架 中间件 .NET
asp.net core 自定义中间件【以dapper为例】
asp.net core 自定义中间件【以dapper为例】
119 0