0

I want to know that can I do universal development in windows. I mean can i write code in some-way so that it may run on windows phone 8 and windows store apps ? Is there anyway in UI or in code-behind files ?

I want to make application that run on windows phone, windows 8 and tablets. Please describe !!

Zaheer Mehmood
  • 249
  • 5
  • 17
  • When form factors and input devices are not the same, you can't create univeral application. Not a good one. However, you may consider creating portable class libray to share a common set of code. Just don't expect to have a single application. – Steve B Nov 04 '13 at 12:25

1 Answers1

3

You'll have to code platform specific parts anyway. You can't have the same UI for example.

But you can reduce the amount of code using Portable Class Libraries.

Here you can find some good advices:

brasofilo
  • 25,496
  • 15
  • 91
  • 179
Anton Sizikov
  • 9,105
  • 1
  • 28
  • 39