New to Telerik UI for Xamarin? Download free 30-day trial

Save Recurring Appointment View

SaveRecurringAppointmentView is a view for choosing recurring appointment saving options.

Control Template

The control template for the SaveRecurringAppointmentView can be found at the following location in our SDK Browse Application.

Customization Properties

In addition, to avoid editing the whole control template, there are additional properties which you can use to customize the look of the UIs, such as SeparatorThickness, ButtonBackgroundColor, etc.

  • ControlTemplate(controlTemplate): Defines the Control Template of the SaveRecurringAppointmentView.
  • BackgroundColor(Xamarin.Forms.Color): Defines the background color of the SaveRecurringAppointmentView.

These properties or the ControlTemplate can be changed by applying style with TargetType="telerikInput:SaveRecurringAppointmentView" in the resources of the “App.xaml” file of your application.

If you customize the control template using ControlTemplate property, you need to define first the control template then the style in the App.xaml Resources. Also when the control template is defined in the App.xaml resources it will be applied for all RadCalendar controls used in the application. If you want to apply the control template on a concreate calendar control, you will need to merge the resource dictionary to the concreate page where the calendar is defines. Example can be found in out Telerik Sample Application.

Example

<Style TargetType="telerikInput:SaveRecurringAppointmentView">
    <Setter Property="BackgroundColor" Value="Blue"/>
</Style>

In addition, you will need to add the following namespace:

xmlns:telerikInput="clr-namespace:Telerik.XamarinForms.Input;assembly=Telerik.XamarinForms.Input"

See Also

In this article