After reading and following your examples on customizing the style of your controls I am more confused than ever.
1. Why do I need a RadResourceDictionary? Isn't a regular ResourceDictionary sufficient?
2. After changing my App.xaml to RadResourceDictionary I get runtime errors that the Telerik style keys already exist in the dictionary.
Below is what I have. Please help and I desperately need to change your default colors to match my design.
<?xml version="1.0" encoding="utf-8" ?><Application xmlns="http://xamarin.com/schemas/2014/forms" xmlns:telerikCommon="clr-namespace:Telerik.XamarinForms.Common;assembly=Telerik.XamarinForms.Common" xmlns:telerikInput="clr-namespace:Telerik.XamarinForms.Input;assembly=Telerik.XamarinForms.Input" x:Class="Mobile.App"> <Application.Resources> <telerikCommon:RadResourceDictionary> <telerikCommon:RadResourceDictionary.MergedDictionaries> <!--<ResourceDictionary MergedWith="telerikCommon:BlueResources"> --><!-- ListView --><!-- <Color x:Key="ListViewItemBorderColor">Orange</Color> <Color x:Key="ListViewSelectionColor">Orange</Color> <Color x:Key="ListViewBackgroundColor">Black</Color> <Color x:Key="ListViewForegroundColor">Orange</Color> <Color x:Key="ListViewSelectionBackgroundColor">Black</Color> </ResourceDictionary>--> <ResourceDictionary MergedWith="telerikInput:TelerikThemeStyles"> <!-- MaskedInput --> <Color x:Key="MaskedInputBorderColor">Red</Color> <Color x:Key="MaskedInputWatermarkColor">#919191</Color> <Color x:Key="MaskedInputErrorColor">#D50002</Color> <Color x:Key="MaskedInputDisplayedTextColor">#4A4949</Color> </ResourceDictionary> <!--<ResourceDictionary MergedWith="primitives:TelerikThemeStyles"/> <ResourceDictionary MergedWith="chart:TelerikThemeStyles"/> <ResourceDictionary MergedWith="telerikDataControls:TelerikThemeStyles" /> <ResourceDictionary MergedWith="dataGrid:TelerikThemeStyles"/>--> </telerikCommon:RadResourceDictionary.MergedDictionaries> </telerikCommon:RadResourceDictionary> </Application.Resources></Application>