show/hide this revision's text 2 deleted 4 characters in body; edited title

How portible portable is Silverlight code to WPF?

In Silverlight I noticed that the code-behind Page class inherits from UserControl:

public partial class Page : UserControl

In WPF the code-behind Page Class inherits from Page:

public partial class Page1 : Page

I was thinking that Silverlight, being a subset of WPFthat , you would be able to copy large blocks of Silverlight code into WPF later and visa vice versa. But differences like this at such a base level indicates indicate that this will not be the case.

Is this just an anomaly or are complex Silverlight applications going to be pretty much unportable to WPF without significant changes?

show/hide this revision's text 1

How portible is Silverlight code to WPF?

In Silverlight I noticed that the code-behind Page class inherits from UserControl:

public partial class Page : UserControl

In WPF the code-behind Page Class inherits from Page:

public partial class Page1 : Page

I was thinking that Silverlight being a subset of WPF that you would be able to copy large blocks of Silverlight code into WPF later and visa versa. But differences like this at such a base level indicates that this will not be the case.

Is this just an anomaly or are complex Silverlight applications going to be pretty much unportable to WPF without significant changes?