DateTime picker localization

I'm using a SfDataForm in a Net Maui for Windows application and I don't find any sample to render the Date Picker in Italian language instead of English

This is the line where the Date Picker appears

<dataForm:DataFormDateItem FieldName="Datavera" LabelText="Data" />

and I have this line of code in my App.Xaml.cs file

CultureInfo.CurrentUICulture = new CultureInfo("it");


            <dataForm:SfDataForm

                x:Name="giacenzemovDataForm"

                DataObject="{Binding SelectedMov}" AutoGenerateItems="False"

                CommitMode="PropertyChanged">

                <dataForm:SfDataForm.TextInputLayoutSettings>

                    <dataForm:TextInputLayoutSettings ContainerType="Outlined"

                                                        FocusedStrokeThickness="3"

                                                        ShowHelperText="True"/>

                </dataForm:SfDataForm.TextInputLayoutSettings>

                <dataForm:SfDataForm.Items>

                    <dataForm:DataFormDateItem FieldName="Datavera" LabelText="Data" />

                    <dataForm:DataFormMultilineItem RowSpan="2" FieldName="Articolo" LabelText="Articolo" IsReadOnly="True" />

                    <dataForm:DataFormNumericItem FieldName="Qta" LabelText="Quantità" UpDownPlacementMode="Inline" />

                    <dataForm:DataFormPickerItem IsVisible="{Binding Scarico}" ItemsSource="{Binding DestinatariOptions}" LabelText="Destinatario" DisplayMemberPath="Name" SelectedValuePath="Destinatario" FieldName="Destinatario" />

                </dataForm:SfDataForm.Items>

            </dataForm:SfDataForm>


1 Reply

KP Kamalesh Periyasamy Syncfusion Team July 1, 2025 07:02 AM UTC

Hi Walter Martin,

 

We have already noted this DatePicker localization issue. It appears to be a framework-level problem. We have already raised the issue in MAUI for DatePicker is not localized in the calendar view, and you can track the progress using the link below:

 

Issue link: DatePicker is not localization in the calendar view. · Issue #15744 · dotnet/maui

 

We are following up on the issue and will provide further updates as soon as we receive them. Thank you for your patience.

 

Regards,
Kamalesh P


Loader.
Up arrow icon