This question is locked. New answers and comments are not allowed.
I've seen the posts on how to edit a style (e.g., http://www.telerik.com/help/silverlight/common-styling-appearance-edit-control-templates-blend.html) and how to modify the progress indicator, but how do I create a RadBusyIndicator with a custom progress indicator (in my case, I want to modify the size and margins), but allow the control to be styled with the selected application theme style (e.g., Expression Dark, Metro, etc.). When I create the control templates in blend, they generate specific background colors such as:
<LinearGradientBrush x:Key="BusyIndicatorIndeterminateBackground" EndPoint="0.5,1" StartPoint="0.5,0"> <GradientStop Color="#FFFFC92B" Offset="0"/> <GradientStop Color="#FFFFF7A9" Offset="1"/> <GradientStop Color="#FFFFFBCD" Offset="0.254"/> <GradientStop Color="#FFFFC92B" Offset="0.5"/> </LinearGradientBrush>
But I really want the colors to be the themes colors, not the ones generated by blend. I've gotten some success by setting the colors using the TemplatedBinding.Example: <Path x:Name="IndeterminateBackgroundDonut" Fill="{TemplateBinding Background}" ,
but I still haven't been able to get all the stroke and Fill colors to reflect the colors of the application theme.
Thanks for any suggestions,
Doug