ColumnDefinitionCollection Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
public ref class ColumnDefinitionCollection sealed : Microsoft::Maui::Controls::DefinitionCollection<Microsoft::Maui::Controls::ColumnDefinition ^>
public sealed class ColumnDefinitionCollection : Microsoft.Maui.Controls.DefinitionCollection<Microsoft.Maui.Controls.ColumnDefinition>
type ColumnDefinitionCollection = class
inherit DefinitionCollection<ColumnDefinition>
Public NotInheritable Class ColumnDefinitionCollection
Inherits DefinitionCollection(Of ColumnDefinition)
- Inheritance
Remarks
App developers can specify GridUnitType values for the Width property in XAML by nesting ColumnDefinition
tags inside tags for the ColumnDefinitions collection property. The following example demonstrates setting three column widths to each of the three valid GridUnitType values:
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto" />
<ColumnDefinition Width="*" />
<ColumnDefinition Width="100" />
</Grid.ColumnDefinitions>
Constructors
ColumnDefinitionCollection() | |
ColumnDefinitionCollection(ColumnDefinition[]) |
Properties
Count | (Inherited from DefinitionCollection<T>) |
IsReadOnly | (Inherited from DefinitionCollection<T>) |
Item[Int32] | (Inherited from DefinitionCollection<T>) |
Methods
Add(T) | (Inherited from DefinitionCollection<T>) |
Clear() | (Inherited from DefinitionCollection<T>) |
Contains(T) | (Inherited from DefinitionCollection<T>) |
CopyTo(T[], Int32) | (Inherited from DefinitionCollection<T>) |
GetEnumerator() | (Inherited from DefinitionCollection<T>) |
IndexOf(T) | (Inherited from DefinitionCollection<T>) |
Insert(Int32, T) | (Inherited from DefinitionCollection<T>) |
Remove(T) | (Inherited from DefinitionCollection<T>) |
RemoveAt(Int32) | (Inherited from DefinitionCollection<T>) |
Events
ItemSizeChanged | (Inherited from DefinitionCollection<T>) |
Explicit Interface Implementations
IEnumerable.GetEnumerator() | (Inherited from DefinitionCollection<T>) |
Applies to
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET MAUI