Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Windows Phone Development uses wpf?

I am new in windows phone development.

I really have some doubts,

Is WPF is actually using for the windows phone app development ?

I am just confused about to reply to one who ask "Which platform or technology will use for developing windows phone apps ?".

I hope to get a good clear reply here.. I googled it many times. but I didnt get any clear idea yet about this.

Thnks.

like image 390
Arun Avatar asked Feb 22 '12 06:02

Arun


People also ask

What is the tool used in Windows Phone development?

In order to develop the apps for Windows Phone, you must install the Windows Phone SDK. Using SDK developers can build native apps for Windows Phone. Windows Phone SDK comes with following main tools: Visual Studio Express Edition for Windows Phone (VS version depends on SDK version)

Is WPF used for standalone and browser hosted applications?

Windows Presentation Foundation (WPF) is a presentation framework that can be used to develop the following types of applications: Standalone Applications (traditional style Windows applications built as executable assemblies that are installed to and run from the client computer).

Does WPF use .NET framework?

The WPF development platform supports a broad set of application development features, including an application model, resources, controls, graphics, layout, data binding, documents, and security. It is a subset of the . NET Framework, so if you have previously built applications with the .

Can WPF run on Windows 7?

WPF Apps will run on Windows XP and above, so it fits your criteria perfectly. You could also use WinForms if you wanted to as, again, a WinForms application will run just fine on a Windows 7 O/S (or above).


2 Answers

No, WP7 development does not use WPF. It uses Silverlight (or XNA for games).

However, the two are quite closely related. WPF was developed in 2006 and introduced the concepts of bindings, creation of UIs via XAML, visual trees, animation, dependency properties and much more. Many of the WPF concepts were re-used by Silverlight, the web-based plugin. Whilst WPF and Silverlight are similar, they are not the same. Despite this, with a little effort, code sharing between the two is possible.

See the following question for more references:

Getting Started with Windows Phone 7

like image 72
ColinE Avatar answered Sep 21 '22 23:09

ColinE


Windows Phone 7 applications can be written using Silverlight or XNA.

With Silverlight you use XAML to create your user interface (as in WPF), but there are couple differences between these 2 technologies: Contrasting Silverlight and WPF.

like image 29
MarcinJuraszek Avatar answered Sep 20 '22 23:09

MarcinJuraszek