Changes

XAML

674 bytes added, 11:39, 5 February 2021
/* Specific {{UBIK}} Controls */
== Specific {{UBIK}} Controls ==
=== Basic ===
* ==== CoolGridSplitter (UBIK.WinX.Controls)====
Allows to make rows or columns of a grid user-resizable
Example:
<source lang = "xml">
<uc:CoolGridSplitter x:Name="ChildAreaGridSplitter" Height="10" HorizontalAlignment="Center" VerticalAlignment="Bottom" Background="Transparent" Foreground="White" ResizeBehavior="CurrentAndNext" ResizeDirection2="Rows"/></source> ==== UBIKImageEditor ====It's essentially the [https://help.syncfusion.com/uwp/image-editor/overview SfImageEditor] from Syncfusion. Theoretically, customizability mentioned in their official documentations should be supported in {{UBIK}} out of the box.One example is to customize the visibility of the toolbar of such an image editor. The following example hides the toolbar.<source lang = "xml"><ctrls:UBIKImageEditor ... xmlns:sfImageEditor="using:Syncfusion.UI.Xaml.ImageEditor"> <sfImageEditor:SfImageEditor.ToolbarSettings> <sfImageEditor:ToolbarSettings IsToolbarVisiblity="False"/> </sfImageEditor:SfImageEditor.ToolbarSettings></ctrls:UBIKImageEditor>
</source>
=== Advanced ===
* ==== [[EvalExpression]]====
Allows to evaluate a C# expression in XAML, using any amount of [[EvalExpression#Parameters|EvalExpressionParameters]]
 
[[Category:WinX|XAML]]
[[Category:XAML|XAML]]
== Converters ==