1

This is probably a really dumb question, but I'm finding conflicting information. I have a project in WPF/VB.net 2010 that I want to create an alternate version of in Silverlight. However, it uses heavy amounts of animation, especially motion animation. Most of this animation takes advantage of storyboard double animations for either translate transforms or canvas left/top changes.

Can I convert this project over to Silverlight?

CodeMouse92
  • 6,840
  • 14
  • 73
  • 130

2 Answers2

1

Just copy it and test. Silverlight has Storyboards, double animations and canvases too.

Emond
  • 50,210
  • 11
  • 84
  • 115
1

@Erno's answer is basically correct, though you need to be aware that there are differences and debugging XAML can be a frustrating experience.

There is certainly a convergence between Silverlight and WPF that will only get stronger over time. I was at a talk by Mike Taulty where this came up and he said that the two would continue to coexist and functionality would migrate between the two.

Without seeing your XAML I can't say for sure, but Silverlight supports all the things you mention.

Community
  • 1
  • 1
ChrisF
  • 134,786
  • 31
  • 255
  • 325
  • :) that is why I said 'test'. Silverlight gets to me every time because I started out with WPF (well... Avalon) and it keeps on getting better (closer to WPF) and fortunately WPF is learning from SL too (Visual State Manager) – Emond May 21 '11 at 19:40
  • @Erno - sorry, that sentence didn't come out as as I intended. – ChrisF May 21 '11 at 19:41
  • Uhm, did my reply made you think I took offence? I didn't. Should I? – Emond May 21 '11 at 19:43
  • just kidding. And I thought your answer was quite clear. No worries. – Emond May 21 '11 at 19:49