Xamarin.forms 在Windows RT应用程序中编辑图像着色

Xamarin.forms 在Windows RT应用程序中编辑图像着色,xamarin.forms,windows-rt,Xamarin.forms,Windows Rt,我已经为Android和iOS的Xamarin.Forms图像控件创建了自定义渲染器,允许我在运行时指定应用于图像的图像色调 在Android中,我使用ImageView上的颜色过滤器调整色调: var cf = new PorterDuffColorFilter(Element.TintColor.ToAndroid(), PorterDuff.Mode.SrcIn); Control.SetColorFilter(cf); 在iOS中,我使用UIImageView的TintColor调整色

我已经为Android和iOS的Xamarin.Forms图像控件创建了自定义渲染器,允许我在运行时指定应用于图像的图像色调

在Android中,我使用ImageView上的颜色过滤器调整色调:

var cf = new PorterDuffColorFilter(Element.TintColor.ToAndroid(), PorterDuff.Mode.SrcIn);
Control.SetColorFilter(cf);
在iOS中,我使用UIImageView的TintColor调整色调:

Control.Image = Control.Image.ImageWithRenderingMode(UIImageRenderingMode.AlwaysTemplate);
Control.TintColor = Element.TintColor.ToUIColor();
有人知道在Windows RT图像控件上应用着色效果的方法吗