ListView.FindNearestItem 方法

定义

按照指定的搜索方向,从给定点开始查找下一个项。

重载

FindNearestItem(SearchDirectionHint, Int32, Int32)

按照指定的搜索方向,从给定的 X 和 Y 坐标开始查找下一个项。

FindNearestItem(SearchDirectionHint, Point)

按照指定的搜索方向,从给定点开始查找下一个项。

FindNearestItem(SearchDirectionHint, Int32, Int32)

按照指定的搜索方向,从给定的 X 和 Y 坐标开始查找下一个项。

public:
 System::Windows::Forms::ListViewItem ^ FindNearestItem(System::Windows::Forms::SearchDirectionHint searchDirection, int x, int y);
public System.Windows.Forms.ListViewItem FindNearestItem (System.Windows.Forms.SearchDirectionHint searchDirection, int x, int y);
public System.Windows.Forms.ListViewItem? FindNearestItem (System.Windows.Forms.SearchDirectionHint searchDirection, int x, int y);
member this.FindNearestItem : System.Windows.Forms.SearchDirectionHint * int * int -> System.Windows.Forms.ListViewItem
Public Function FindNearestItem (searchDirection As SearchDirectionHint, x As Integer, y As Integer) As ListViewItem

参数

searchDirection
SearchDirectionHint

SearchDirectionHint 值之一。

x
Int32

在该处开始进行搜索的点的 X 坐标。

y
Int32

在该处开始进行搜索的点的 Y 坐标。

返回

ListViewItem

与给定坐标最接近的 ListViewItem(以指定方向进行搜索)。

例外

View 设置为除 SmallIconLargeIcon 以外的值。

注解

如果未在给定方向找到任何项,该方法 FindNearestItemnull 返回。 根据应用程序正在运行的操作系统,标识最近的项可能会有所不同,并会影响结果 FindNearestItem

适用于

FindNearestItem(SearchDirectionHint, Point)

按照指定的搜索方向,从给定点开始查找下一个项。

public:
 System::Windows::Forms::ListViewItem ^ FindNearestItem(System::Windows::Forms::SearchDirectionHint dir, System::Drawing::Point point);
public System.Windows.Forms.ListViewItem FindNearestItem (System.Windows.Forms.SearchDirectionHint dir, System.Drawing.Point point);
public System.Windows.Forms.ListViewItem? FindNearestItem (System.Windows.Forms.SearchDirectionHint dir, System.Drawing.Point point);
member this.FindNearestItem : System.Windows.Forms.SearchDirectionHint * System.Drawing.Point -> System.Windows.Forms.ListViewItem
Public Function FindNearestItem (dir As SearchDirectionHint, point As Point) As ListViewItem

参数

point
Point

从该处开始执行搜索的点。

返回

ListViewItem

与给定点最接近的 ListViewItem (以指定方向进行搜索)。

例外

View 设置为除 SmallIconLargeIcon 以外的值。

注解

如果未在给定方向找到任何项,该方法 FindNearestItemnull 返回。 根据应用程序正在运行的操作系统,标识最近的项可能会有所不同,并会影响结果 FindNearestItem

适用于