Iciclecreek.Avalonia.Controls
2.0.0
dotnet add package Iciclecreek.Avalonia.Controls --version 2.0.0
NuGet\Install-Package Iciclecreek.Avalonia.Controls -Version 2.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Iciclecreek.Avalonia.Controls" Version="2.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Iciclecreek.Avalonia.Controls --version 2.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Iciclecreek.Avalonia.Controls, 2.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Iciclecreek.Avalonia.Controls as a Cake Addin #addin nuget:?package=Iciclecreek.Avalonia.Controls&version=2.0.0 // Install Iciclecreek.Avalonia.Controls as a Cake Tool #tool nuget:?package=Iciclecreek.Avalonia.Controls&version=2.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Iciclecreek.Avalonia.Controls
This is a package of UI controls for Avalonia UI.
- ColumnsPanel - A panel which lays out arranges children into dynamic columns
Installation
Add the Iciclecreek.Avalonia.Controls package to your project
Update your xmlns
xmlns:ice="using:Iciclecreek.Avalonia.Controls"
ColumnsPanel Control
The ColumnsPanel control is a panel which dynamically lays out its children in left-to right order into columns.
There are 2 modes of usage:
- Dynamic Columns - The ColumnWidth property defines the width of every column, and the number of columns is dynamically set to the number of columns which fit the width of the control. The MinColumns and MaxColumns
- properties can be used to control the number of columns.
- Static Columns - The ColumnDefinitions property defines column definitions (ex: '1*,2*,500') The number of columns is determined by the number of column definitions. MinColumn, MaxColumns are ignored.
Usage
<ice:ColumnsPanel ColumnWidth="100">
<TextBlock Text="Column 1" />
<TextBlock Text="Column 2" />
<TextBlock Text="Column 3" />
...
</ice:ColumnsPanel>
Example of a columns panel in a items control
<ItemsControl Items="{Binding Items}">
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
<ice:ColumnsPanel ColumnWidth="300" />
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
<ItemsControl.ItemTemplate>
<DataTemplate>
<Image Source="{Binding Source}" />
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
Properties
Property | Default | Description |
---|---|---|
ColumnWidth | 300 | The width of each column. |
MinColumns | 1 | The minimum number of columns. If ColumnWidth*MinColumns is not possible the column width will scale to fit. |
MaxColumns | Int.MaxValue | The maximum number of columns. |
Gap | 0 | The vertical gap between each item in a column |
ColumnGap | 0 | The horizontal gap between each column |
ColumnDefinitions | null | A ColumnDefinitions string like ',2,*' which can be used to specify the width of each column. If this is set then ColumnWidth, MinColumns, MaxColumns are ignored. |
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net6.0
- Avalonia (>= 11.0.5)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.