惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

T
Threatpost
V
Vulnerabilities – Threatpost
TaoSecurity Blog
TaoSecurity Blog
C
Cybersecurity and Infrastructure Security Agency CISA
P
Proofpoint News Feed
G
GRAHAM CLULEY
S
Securelist
P
Palo Alto Networks Blog
MongoDB | Blog
MongoDB | Blog
A
Arctic Wolf
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
WordPress大学
WordPress大学
Project Zero
Project Zero
T
Threat Research - Cisco Blogs
L
Lohrmann on Cybersecurity
C
Cyber Attacks, Cyber Crime and Cyber Security
F
Fortinet All Blogs
博客园 - 叶小钗
B
Blog RSS Feed
C
Cisco Blogs
Google DeepMind News
Google DeepMind News
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
Apple Machine Learning Research
Apple Machine Learning Research
G
Google Developers Blog
K
Kaspersky official blog
D
Docker
Latest news
Latest news
Cisco Talos Blog
Cisco Talos Blog
T
Tor Project blog
Cyberwarzone
Cyberwarzone
Security Latest
Security Latest
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
D
Darknet – Hacking Tools, Hacker News & Cyber Security
Spread Privacy
Spread Privacy
Microsoft Azure Blog
Microsoft Azure Blog
C
Check Point Blog
J
Java Code Geeks
Simon Willison's Weblog
Simon Willison's Weblog
T
Tenable Blog
Recent Announcements
Recent Announcements
T
Tailwind CSS Blog
H
Help Net Security
L
LINUX DO - 热门话题
T
The Exploit Database - CXSecurity.com
Jina AI
Jina AI
S
SegmentFault 最新的问题
MyScale Blog
MyScale Blog
NISL@THU
NISL@THU
美团技术团队
腾讯CDC

博客园 - KUDO

精解PSI-SI(二) 精解PSI-SI(一) DVB码流中业务信息与电子节目指南 什么是ECM,EMM,AU,EMU? showModalDialog()、showModelessDialog()方法使用详解 js收藏 ASP.NET 2.0 中改进的缓存功能 js 日历控件 - KUDO - 博客园 在VS2005中 GridView导入Excel的两点小技巧-附源码 Python 一门神奇的语言 获取checkbox onclick事件中的参数 javascript 技巧 网页及其控件有很多触发事件 网页代码常用小技巧总结续,网页制作学习 Microsoft .NET 框架资源基础 crm具体问题具体实现 js\css 让图片垂直居中 - KUDO - 博客园 制作随表格拉伸的背景图 基于aspnet Forms身份验证基本原理
如何实现选择DataGrid单元格时显示选择一行
KUDO · 2006-10-20 · via 博客园 - KUDO

首先创建一个用户控件,从DataGrid继承,然后override它的onmousedown方法:

OnMouseDown(System.Windows.Forms.MouseEventArgs e)  
  
{  
  
DataGrid.HitTestInfo hti 
= this.HitTest(e.X, e.Y);  
  
if (hti.Type == DataGrid.HitTestType.Cell)  
  
{  
  
MouseEventArgs eNew 
= new  
  
MouseEventArgs(e.Button,e.Clicks,
2,e.Y,e.Delta);  
  
base.OnMouseDown(eNew);  
  
return;  
  
}
  
  
base.OnMouseDown(e);  

 

然后在你的窗体上添加这个控件,绑定数据后就可以了。