次の方法で共有


GridExtensions.Add メソッド

定義

オーバーロード

Add(Grid, IView, Int32, Int32)

行スパンが 1 で、列スパンが 1 の指定した列と行のGridIViewを追加します。

Add(Grid, IView, Int32, Int32, Int32, Int32)
古い.

指定した行と列にまたがるGridIViewを追加します。

Add(Grid, IView, Int32, Int32)

ソース:
GridExtensions.cs
ソース:
GridExtensions.cs

行スパンが 1 で、列スパンが 1 の指定した列と行のGridIViewを追加します。

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

IViewが追加されるGrid

view
IView

追加する IView です。

column
Int32

IViewを配置する列。

row
Int32

IViewを配置する行。

例外

view が null の場合にスローされます。

rowまたはcolumnが 0 未満の場合にスローされます。

注釈

Gridに、指定した場所を含む十分な行/列がない場合は、追加されます。

適用対象

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

ソース:
GridExtensions.cs
ソース:
GridExtensions.cs

注意事項

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

指定した行と列にまたがるGridIViewを追加します。

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

IViewが追加されるGrid

view
IView

追加する IView です。

left
Int32

列のスパンの左端。 0 以上である必要があります。

right
Int32

列のスパンの右端。 左より大きくなければなりません。 IViewはこの列を占有しませんが、その直前に停止します。

top
Int32

行のスパンの上端。 0 以上である必要があります。

bottom
Int32

行のスパンの下端。 上よりも大きい必要があります。 IViewはこの行を占有しませんが、直前に停止します。

属性

例外

view が null の場合にスローされます。

leftまたはtopが 0 未満、bottomtop以下、またはrightleft以下の場合にスローされます。

注釈

指定したスパンを含めるのに十分な行/列がない場合は、 Grid が追加されます。

適用対象