This question is locked. New answers and comments are not allowed.
Hello,
I tried to bind the controls thru xaml and code behind and no luck..
Any ideas ??
Thank you for your time
Rick
I tried to bind the controls thru xaml and code behind and no luck..
Any ideas ??
if (Bkgrd.SelectedColor != null && Bkgrd.SelectedColor is Color)
{
var color = (Color)Bkgrd.SelectedColor;
DiaGrid.Background = new SolidColorBrush(color);
<
telerik:RadDiagram.Background
>
<
SolidColorBrush
Color
=
"{Binding SelectedColor, ElementName=Bkgrd}"
/>
</
telerik:RadDiagram.Background
>
Thank you for your time
Rick