Right-to-Left in .NET MAUI DataForm
18 Nov 20181 minute to read
The SfDataForm supports changing the flow direction of the text to the right-to-left direction by setting the FlowDirection to RightToLeft.
<ContentPage
...
xmlns:dataForm="clr-namespace:Syncfusion.Maui.DataForm;assembly=Syncfusion.Maui.DataForm">
<dataForm:SfDataForm
x:Name="dataForm"
FlowDirection="RightToLeft">
</dataForm:SfDataForm>
</ContentPage>SfDataForm dataForm = new SfDataForm();
dataForm.FlowDirection = FlowDirection.RightToLeft;
this.Content = dataForm;