Hello,
In this demo: http://demos.telerik.com/silverlight/#ImageEditor/Cropping you use BitmapToRadBitmapImageConverter. Can you please share the code for the converter?
I suppose it is something like this:
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
var image = value as BitmapImage;
if(image != null)
return new RadBitmap(image);
return null;
}
But will be good to have the original code.
Regards,
Saykor
In this demo: http://demos.telerik.com/silverlight/#ImageEditor/Cropping you use BitmapToRadBitmapImageConverter. Can you please share the code for the converter?
I suppose it is something like this:
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
var image = value as BitmapImage;
if(image != null)
return new RadBitmap(image);
return null;
}
But will be good to have the original code.
Regards,
Saykor