GridExtensions.Add 方法

定义

重载

Add(Grid, IView, Int32, Int32)

向指定列和行添加一个IViewGrid行,其行跨度为 1,列跨度为 1。

Add(Grid, IView, Int32, Int32, Int32, Int32)
已过时.

向指定行和列范围添加一个IViewGrid值。

Add(Grid, IView, Int32, Int32)

Source:
GridExtensions.cs
Source:
GridExtensions.cs

向指定列和行添加一个IViewGrid行,其行跨度为 1,列跨度为 1。

public static void Add (this Microsoft.Maui.Controls.Grid grid, Microsoft.Maui.IView view, int column = 0, int row = 0);
static member Add : Microsoft.Maui.Controls.Grid * Microsoft.Maui.IView * int * int -> unit
<Extension()>
Public Sub Add (grid As Grid, view As IView, Optional column As Integer = 0, Optional row As Integer = 0)

参数

grid
Grid

Grid要向其添加的IView项。

view
IView

要添加的 IView

column
Int32

要在其中放置该列的 IView列。

row
Int32

要在其中放置的 IView行。

例外

view 为 null 时引发。

在或column小于 0 时row引发。

注解

Grid如果行/列没有足够的行/列来包含指定位置,则会添加它们。

适用于

Add(Grid, IView, Int32, Int32, Int32, Int32)

Source:
GridExtensions.cs
Source:
GridExtensions.cs

注意

This method is obsolete. Please use AddWithSpan(this Grid, IView, int, int, int, int) instead.

向指定行和列范围添加一个IViewGrid值。

public:
[System::Runtime::CompilerServices::Extension]
 static void Add(Microsoft::Maui::Controls::Grid ^ grid, Microsoft::Maui::IView ^ view, int left, int right, int top, int bottom);
[System.Obsolete("This method is obsolete. Please use AddWithSpan(this Grid, IView, int, int, int, int) instead.")]
public static void Add (this Microsoft.Maui.Controls.Grid grid, Microsoft.Maui.IView view, int left, int right, int top, int bottom);
[<System.Obsolete("This method is obsolete. Please use AddWithSpan(this Grid, IView, int, int, int, int) instead.")>]
static member Add : Microsoft.Maui.Controls.Grid * Microsoft.Maui.IView * int * int * int * int -> unit
<Extension()>
Public Sub Add (grid As Grid, view As IView, left As Integer, right As Integer, top As Integer, bottom As Integer)

参数

grid
Grid

Grid要向其添加的IView项。

view
IView

要添加的 IView

left
Int32

列范围的左边缘。 必须大于或等于 0。

right
Int32

列范围的右边缘。 必须大于左边缘。 该 IView 列不会占用此列,但在它之前将停止。

top
Int32

行范围的上边缘。 必须大于或等于 0。

bottom
Int32

行范围的下边缘。 必须大于上边缘。 该 IView 行不会占用此行,但会在此行之前停止。

属性

例外

view 为 null 时引发。

在小于或top小于 0、bottom小于或等于righttop或小于或等于leftleft引发。

注解

Grid如果行/列没有足够的行/列来包含指定的范围,则会添加它们。

适用于