Screen.GetBounds 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
检索显示器的边界。
重载
GetBounds(Control) |
检索包含指定控件的最大部分的显示器的边界。 |
GetBounds(Point) |
检索包含指定点的显示器的边界。 |
GetBounds(Rectangle) |
检索包含指定矩形最大部分的显示器的边界。 |
GetBounds(Control)
检索包含指定控件的最大部分的显示器的边界。
public:
static System::Drawing::Rectangle GetBounds(System::Windows::Forms::Control ^ ctl);
public static System.Drawing.Rectangle GetBounds (System.Windows.Forms.Control ctl);
static member GetBounds : System.Windows.Forms.Control -> System.Drawing.Rectangle
Public Shared Function GetBounds (ctl As Control) As Rectangle
参数
返回
指定包含指定控件的显示器边界的 Rectangle。 在各显示器都不包含指定控件的多显示器环境中,将返回与该控件最接近的显示器。
适用于
GetBounds(Point)
检索包含指定点的显示器的边界。
public:
static System::Drawing::Rectangle GetBounds(System::Drawing::Point pt);
public static System.Drawing.Rectangle GetBounds (System.Drawing.Point pt);
static member GetBounds : System.Drawing.Point -> System.Drawing.Rectangle
Public Shared Function GetBounds (pt As Point) As Rectangle
参数
返回
指定包含指定点的显示器的边界的 Rectangle。 在各显示器都不包含指定点的多显示器环境中,将返回与该点最接近的显示器。
适用于
GetBounds(Rectangle)
检索包含指定矩形最大部分的显示器的边界。
public:
static System::Drawing::Rectangle GetBounds(System::Drawing::Rectangle rect);
public static System.Drawing.Rectangle GetBounds (System.Drawing.Rectangle rect);
static member GetBounds : System.Drawing.Rectangle -> System.Drawing.Rectangle
Public Shared Function GetBounds (rect As Rectangle) As Rectangle
参数
返回
指定包含指定矩形的显示器的边界的 Rectangle。 在各显示器都不包含指定矩形的多显示器环境中,将返回与该矩形最接近的显示器。