ToolStrip.GetItemAt 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回位于指定位置的项。
重载
GetItemAt(Int32, Int32) |
返回位于 ToolStrip 工作区的指定 X 坐标和 Y 坐标的项。 |
GetItemAt(Point) |
返回位于 ToolStrip 的工作区中指定点的项。 |
GetItemAt(Int32, Int32)
返回位于 ToolStrip 工作区的指定 X 坐标和 Y 坐标的项。
public:
System::Windows::Forms::ToolStripItem ^ GetItemAt(int x, int y);
public System.Windows.Forms.ToolStripItem GetItemAt (int x, int y);
public System.Windows.Forms.ToolStripItem? GetItemAt (int x, int y);
member this.GetItemAt : int * int -> System.Windows.Forms.ToolStripItem
Public Function GetItemAt (x As Integer, y As Integer) As ToolStripItem
参数
- x
- Int32
从工作区左边缘开始算的水平坐标,以像素为单位。
- y
- Int32
从工作区上边缘开始算的垂直坐标,以像素为单位。
返回
指定位置处的 ToolStripItem,如果找不到 ToolStripItem,则为 null
。
适用于
GetItemAt(Point)
返回位于 ToolStrip 的工作区中指定点的项。
public:
System::Windows::Forms::ToolStripItem ^ GetItemAt(System::Drawing::Point point);
public System.Windows.Forms.ToolStripItem GetItemAt (System.Drawing.Point point);
public System.Windows.Forms.ToolStripItem? GetItemAt (System.Drawing.Point point);
member this.GetItemAt : System.Drawing.Point -> System.Windows.Forms.ToolStripItem
Public Function GetItemAt (point As Point) As ToolStripItem
参数
- point
- Point
Point,在此处搜索 ToolStripItem。
返回
指定位置处的 ToolStripItem,如果找不到 ToolStripItem,则为 null
。