BoldSignA modern eSignature application with affordable pricing. Sign up today for unlimited document usage!
ScheduleView="MonthView" Locale="nl-NL" EnableNavigation="True" BackgroundColor="White" VerticalOptions="FillAndExpand" HorizontalOptions="FillAndExpand" ShowAppointmentsInline="True" DataSource="{Binding DisplayedAppointments,Mode=TwoWay}"> |
//Localization for Dutch
sfschedule.Locale = "nl";
|
Hi Luuk,Thanks for your interest in Syncfusion products.Query 1: LocalizationIn Locale property, Schedule Xamarin.Forms, only language code should be set to Locale property. Kindly refer the below code snippet to set localization for Dutch.
//Localization for Dutchsfschedule.Locale = "nl";Please let us know if you have any query on this.Query 2: Month Inline Time FormatCurrently we don’t have this support (to show the month inline date format to HH:mm instead of AM/PM) in our control. We have considered this implementation as a feature request, we will implement this feature in any of our upcoming volume release.Regards,Swathi G
</controls:BNSchedule.Behaviors> <controls:BNSchedule.DayViewSettings> <schedule:DayViewSettings WorkStartHour="7" WorkEndHour="19" > <schedule:DayViewSettings.DayLabelSettings> <schedule:DayLabelSettings TimeFormat="HH:mm" /> </schedule:DayViewSettings.DayLabelSettings> </schedule:DayViewSettings> </controls:BNSchedule.DayViewSettings> |
<schedule:SfSchedule > <schedule:SfSchedule.DayViewSettings> <schedule:DayViewSettings WorkStartHour="7" WorkEndHour="19" > <schedule:DayViewSettings.DayLabelSettings> <schedule:DayLabelSettings TimeFormat="HH:mm" /> </schedule:DayViewSettings.DayLabelSettings> </schedule:DayViewSettings> </schedule:SfSchedule.DayViewSettings> </schedule:SfSchedule> |
daylabelsettings.TimeFormat = "HH:mm"; dayviewsettings.DayLabelSettings = daylabelsettings; schedule.DayViewSettings = dayviewsettings; |
<controls:BNSchedule x:Name="Schedule" ScheduleView="DayView" Locale="nl" EnableNavigation="True" BackgroundColor="White" HorizontalOptions="FillAndExpand" VerticalOptions="FillAndExpand" DataSource="{Binding DisplayedAppointments,Mode=TwoWay}"> <controls:BNSchedule.Behaviors> <behaviors:EventToCommandBehavior EventName="OnAppointmentLoadedEvent" Command="{Binding OnAppointmentLoadedCommand}" Converter="{StaticResource LoadedEventConverter}"/> <behaviors:EventToCommandBehavior EventName="VisibleDatesChangedEvent" Command="{Binding VisibleDateChangedCommand}" Converter="{StaticResource VisibleDateChangedEventConverter}"/> <behaviors:EventToCommandBehavior EventName="ScheduleCellTapped" Command="{Binding ScheduleCellTappedCommand}" Converter="{StaticResource ScheduleTappedEventConverter}"/> </controls:BNSchedule.Behaviors> <controls:BNSchedule > <controls:BNSchedule.DayViewSettings> <schedule:DayViewSettings WorkStartHour="7" WorkEndHour="19" > <schedule:DayViewSettings.DayLabelSettings> <schedule:DayLabelSettings TimeFormat="HH:mm" /> </schedule:DayViewSettings.DayLabelSettings> </schedule:DayViewSettings> </controls:BNSchedule.DayViewSettings> </controls:BNSchedule> </controls:BNSchedule> |
<controls:BNSchedule.Behaviors> <behaviors:EventToCommandBehavior EventName="OnAppointmentLoadedEvent" Command="{Binding OnAppointmentLoadedCommand}" Converter="{StaticResource LoadedEventConverter}"/> <behaviors:EventToCommandBehavior EventName="VisibleDatesChangedEvent" Command="{Binding VisibleDateChangedCommand}" Converter="{StaticResource VisibleDateChangedEventConverter}"/> <behaviors:EventToCommandBehavior EventName="ScheduleCellTapped" Command="{Binding ScheduleCellTappedCommand}" Converter="{StaticResource ScheduleTappedEventConverter}"/> </controls:BNSchedule.Behaviors> <schedule:SfSchedule.WeekViewSettings> <schedule:WeekViewSettings WorkStartHour="7" WorkEndHour="19" > <schedule:WeekViewSettings.WeekLabelSettings> <schedule:WeekLabelSettings TimeFormat="HH:mm" /> </schedule:WeekViewSettings.WeekLabelSettings> </schedule:WeekViewSettings> </schedule:SfSchedule.WeekViewSettings> </controls:BNSchedule> |
Hi Luuk,Thanks for your interest in Syncfusion products.Query 1: LocalizationIn Locale property, Schedule Xamarin.Forms, only language code should be set to Locale property. Kindly refer the below code snippet to set localization for Dutch.
//Localization for Dutchsfschedule.Locale = "nl";Please let us know if you have any query on this.Query 2: Month Inline Time FormatCurrently we don’t have this support (to show the month inline date format to HH:mm instead of AM/PM) in our control. We have considered this implementation as a feature request, we will implement this feature in any of our upcoming volume release.Regards,Swathi G