2power10
2power10

Reputation: 1279

What the different between System.Windows.Controls.Page and Windows.UI.Xaml.Controls.Page

There are two Page class under System.Windows.Controls and Windows.UI.Xaml.Controls, when I new a windows phone page, both page works fine. What the different between those two page, and how to choose which to use?

Upvotes: 0

Views: 384

Answers (1)

Amit Bhatiya
Amit Bhatiya

Reputation: 2621

The major Difference between them are where are they used and Referenced.

System.Windows.Controls is used for windows phone 8 Silverlight Application and

Windows.UI.Xaml.Controls is used for Windows 8 [Windows Store apps] and Windows Phone 8.1 [Windows Runtime apps] Application and as well as for Universal Apps

Upvotes: 3

Related Questions