Jump to: navigation, search

Changes


XAML

767 bytes added, 13:43, 1 April 2021
/* UBIKImageEditor */
==== UBIKImageEditor ====
<tabs>
<tab name="UWP">
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.
</ctrls:UBIKImageEditor>
</source>
</tab>
<tab name="Xamarin">
It's essentially the [https://help.syncfusion.com/xamarin/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.SfImageEditor.XForms">
<sfImageEditor:SfImageEditor.ToolbarSettings>
<sfImageEditor:ToolbarSettings IsVisible="false" />
</sfImageEditor:SfImageEditor.ToolbarSettings>
</ctrls:UBIKImageEditor>
</source>
</tab>
</tabs>
The MergeAnnotationsOnSave property allows to configure whether annotations should be shared through the {{UBIK}} property from the respective Annotation classification (''false'', default), or if they should be merged directly into the original file (''true''): {{Version/WinXSince|3.8.0}} {{Version/XamarinSince|1.2.0}}
<source lang = "xml">
<ctrls:UBIKImageEditor MergeAnnotationsOnSave="true" <!--true to merge automatically, false to use the classification-->