GridExtensions.Add 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
Add(Grid, IView, Int32, Int32) | |
Add(Grid, IView, Int32, Int32, Int32, Int32) |
已淘汰.
|
Add(Grid, IView, Int32, Int32)
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)
參數
例外狀況
當 view
為 null 時擲回。
當或 column
小於0時row
擲回。
備註
Grid如果 沒有足夠的數據列/數據行來包含指定的位置,則會新增它們。
適用於
Add(Grid, IView, Int32, Int32, Int32, Int32)
警告
This method is obsolete. Please use AddWithSpan(this Grid, IView, int, int, int, int) instead.
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)
參數
- left
- Int32
資料行範圍的左邊緣。 必須大於或等於 0。
- top
- Int32
資料列範圍的上邊緣。 必須大於或等於 0。
- 屬性
例外狀況
當 view
為 null 時擲回。
當 left
或 top
小於 0、 bottom
小於或等於 top
時擲回 ,或 right
小於或等於 left
。
備註
Grid如果 沒有足夠的數據列/數據行來包含指定的範圍,則會新增它們。