Creating views
There are multiple ways of creating a view for a certain control. They all have in common that the resulting type is IView
or IView<'t>
.
Creating views for common controls
FuncUI provides functions for creating standard Avalonia controls. The create function always follows the same pattern.\
internal - signature
user code
The create function is always found on the module named the same as the Avalonia control.
So the create function for a TextBlock
is TextBlock.create
, for a StackPanel
it's StackPanel.create
and so on.
Creating views for custom controls
Even without creating bindings for a control you can create and embed it in a view.
Passing constructor arguments
Sometimes controls don't have a unit constructor and need constructor arguments. Here is how you can pass them.
Last updated