xyzWty
xyzWty

Reputation: 133

Image Control is not rendering in WinRT 8.1 Xamarin.Forms (Portable) project

Image Renderer in xamarin.forms not rendering in Xamarin.Forms (Portable) and it is working in Xamarin.Forms (Shared) for windows RT 8.1 phone. Why is that so? Is there another way of rendering IMAGE control in windows RT 8.1 phone.

My code : -assembly code here

[assembly: ExportRenderer(typeof(Xamarin.Forms.Image), typeof(ImageWinRenderer))]

-renderer class below

public class ImageWinRenderer : Xamarin.Forms.Platform.WinRT.ImageRenderer

protected override void OnElementChanged(ElementChangedEventArgs e)

Upvotes: 0

Views: 89

Answers (1)

Hemil Modi
Hemil Modi

Reputation: 66

I tried working with Image render in shared project (xamarin), it worked!!. Still, not able to find conclusive answer for why it is not working in portable project

Upvotes: 0

Related Questions