user677607
user677607

Reputation:

What is the Equavalent of Bitmap & Graphics (found in Windows Forms) in Silverlight?

I have an application in windows forms that have the code with Bitmap and Graphics and now i would like to convert it to Silverlight and i would like to know the equavalent of Bitmap & Graphics (found in Windows Forms) in Silverlight. Thanks!

Upvotes: 3

Views: 111

Answers (1)

Haris Hasan
Haris Hasan

Reputation: 30097

See this for bitmap in Silverlight or you can also use Image.

As far as Graphics is concerned, I don't think so you will find anything equivalent of Graphics in Silverlight because it is based on totally different rendering engine as compared to Win Forms. May be you can use Shape and/or Geometry classes

Upvotes: 1

Related Questions