DataGrid.HitTestInfo 类
包含有关指定坐标处的 System.Windows.Forms.DataGrid 一部分的信息。无法继承此类。
**命名空间:**System.Windows.Forms
**程序集:**System.Windows.Forms(在 system.windows.forms.dll 中)
语法
声明
Public NotInheritable Class HitTestInfo
用法
Dim instance As HitTestInfo
public sealed class HitTestInfo
public ref class HitTestInfo sealed
public final class HitTestInfo
public final class HitTestInfo
备注
DataGrid.HitTestInfo 类与 DataGrid 控件的 HitTest 方法一起使用,以确定用户单击了 DataGrid 控件的哪个部分。DataGrid.HitTestInfo 类包含行、列和网格中被单击的部分。有关网格部分的完整列表,请参见由 Type 属性返回的 DataGrid.HitTestType 枚举。
要返回 DataGrid.HitTestInfo,请从 DataGrid 控件的 MouseDown 事件调用 HitTest 方法。将 MouseEventArgs 的 x 和 y 属性传递给 HitTest 方法。
示例
下面的示例使用 MouseDown 事件中的 HitTest 方法返回 DataGrid.HitTestInfo 对象。然后打印行、列和网格的一部分。
Private Sub DataGrid1_MouseDown(ByVal sender As Object, ByVal e As MouseEventArgs)
Console.WriteLine()
Dim myHitTest As DataGrid.HitTestInfo
' Use the DataGrid control's HitTest method with the x and y properties.
myHitTest = DataGrid1.HitTest(e.X, e.Y)
Console.WriteLine("Column " & myHitTest.Column)
Console.WriteLine("Row " & myHitTest.Row)
Console.WriteLine("Type " & myHitTest.Type)
Console.WriteLine("ToString " & myHitTest.ToString)
Console.WriteLine("Format " & myHitTest.Type.ToString)
End Sub
private void dataGrid1_MouseDown
(object sender, System.Windows.Forms.MouseEventArgs e)
{
Console.WriteLine();
System.Windows.Forms.DataGrid.HitTestInfo myHitTest;
// Use the DataGrid control's HitTest method with the x and y properties.
myHitTest = dataGrid1.HitTest(e.X,e.Y);
Console.WriteLine(myHitTest);
Console.WriteLine("Column " + myHitTest.Column);
Console.WriteLine("Row " + myHitTest.Row);
Console.WriteLine("Type " + myHitTest.Type);
Console.WriteLine("ToString " + myHitTest.ToString());
Console.WriteLine("Hit " + myHitTest.Type.ToString());
}
private:
void dataGrid1_MouseDown( Object^ /*sender*/, System::Windows::Forms::MouseEventArgs^ e )
{
Console::WriteLine();
System::Windows::Forms::DataGrid::HitTestInfo^ myHitTest;
// Use the DataGrid control's HitTest method with the x and y properties.
myHitTest = dataGrid1->HitTest( e->X, e->Y );
Console::WriteLine( myHitTest );
Console::WriteLine( "Column {0}", myHitTest->Column );
Console::WriteLine( "Row {0}", myHitTest->Row );
Console::WriteLine( "Type {0}", myHitTest->Type );
Console::WriteLine( "ToString {0}", myHitTest );
Console::WriteLine( "Hit {0}", myHitTest->Type );
}
继承层次结构
System.Object
System.Windows.Forms.DataGrid.HitTestInfo
线程安全
此类型的任何公共静态(Visual Basic 中的 Shared)成员都是线程安全的,但不保证所有实例成员都是线程安全的。
平台
Windows 98、Windows 2000 SP4、Windows CE、Windows Millennium Edition、Windows Mobile for Pocket PC、Windows Mobile for Smartphone、Windows Server 2003、Windows XP Media Center Edition、Windows XP Professional x64 Edition、Windows XP SP2、Windows XP Starter Edition
.NET Framework 并不是对每个平台的所有版本都提供支持。有关受支持版本的列表,请参见系统要求。
版本信息
.NET Framework
受以下版本支持:2.0、1.1、1.0
.NET Compact Framework
受以下版本支持:2.0、1.0
请参见
参考
DataGrid.HitTestInfo 成员
System.Windows.Forms 命名空间
DataGrid.CurrentCell 属性
GetCellBounds
HitTest
DataGrid.HitTestType