In Silverlight, I noticed that the default page class inherits from UserControl:
public partial class Page : UserControl
In WPF, page code by page type is inherited from the page:
public partial class Page1 : Page
I thought that Silverlight, as a subset of WPF, you can copy large blocks of Silverlight code into WPF later and vice versa. But differences like this at such a basic level show that this is not so.
Is it just an anomaly or sophisticated Silverlight applications that are largely not migrated to WPF without significant changes?
wpf silverlight
Edward tanguay
source share