I am seeing some significant performance problem when using implicit styles that are marked as resource (build action).
Opening a dialog takes 5 second when the xaml (fo ex: Telerik.Windows.Controls.Data.xaml) files are marked as resource for build action, if i mark them as page the dialog opens up in a second.
I am developing and add-in project, basically my project is being hosted inside another WPF application, because of that I do not have an App.xaml file. I am referencing to no xaml binaries and have added all the telerik xaml files to my project.
Because I do not have app.xaml I am merging the xaml files in my dialog window. Not sure if this will cause the performance issue.
<Window.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="../../Themes/Custom/Common.xaml"/>
<ResourceDictionary Source="../../Themes/Custom/RadTabControlStyle.xaml"/>
<ResourceDictionary Source="../../Themes/Custom/RadButtonStyle.xaml"/>
<ResourceDictionary Source="../../Themes/Custom/RadTimePickerStyle.xaml"/>
<ResourceDictionary Source="../../Themes/Custom/RadMaskedNumericInputStyle.xaml"/>
</ResourceDictionary.MergedDictionaries>
<conv:EnumDescriptionConverter x:Key="enumDescriptionConverter"/>
<conv:EnumFilterConverter x:Key="enumFilterConverter"/>
<conv:ReverseBooleanConverter x:Key="reverseBooleanConverter"/>
</ResourceDictionary>
</Window.Resources>