GridExtensions.Add 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
Add(Grid, IView, Int32, Int32) | |
Add(Grid, IView, Int32, Int32, Int32, Int32) |
사용되지 않음.
|
Add(Grid, IView, Int32, Int32)
- Source:
- GridExtensions.cs
- Source:
- GridExtensions.cs
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)
매개 변수
예외
null일 때 view
throw됩니다.
0보다 작거나 column
0보다 작은 경우 row
throw됩니다.
설명
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.
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보다 크거나 같아야 합니다.
- 특성
예외
null일 때 view
throw됩니다.
left
0보다 작거나, 작거나 top
같top
거나, bottom
같거나right
, 0보다 작거나 같은 left
경우 throw됩니다.
설명
Grid 지정된 범위를 포함할 행/열이 충분하지 않으면 추가됩니다.
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET MAUI