欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

C# ListView双击Item事件

程序员文章站 2023-11-25 12:32:52
复制代码 代码如下:private void listview右侧_mousedoubleclick( object sender , mouseeventargs e )...
复制代码 代码如下:

private void listview右侧_mousedoubleclick( object sender , mouseeventargs e )
{
listviewhittestinfo info = listview右侧.hittest (e.x , e.y);
if( info.item != null )
{
messagebox.show (info.item.text);
}
}