UPDATE: The BUILD keynote cleared up a LOT of these concerns /2011/09/14/build-keynote-day-1metro-experience-with-jupiter-xaml-and-html5js/

Summary

  • Windows 8 supports applications being built in C# / XAML / VB.Net / C++ / HTML+JS.
  • The new UI framework ‘Jupiter’ allows applications to be written in your language of choice. This is similar to how the .Net framework allowed people to code against the framework in their language of choice.
  • Jupiter seems to be a ‘Next generation’ XAML based framework
  • I’m more excited about the new possibilities coming in the new Jupiter XAML programming model than the misconception that HTML+JS is the only way to create apps.
Update: Here is a good in depth article by Ars Technica http://arstechnica.com/microsoft/news/2011/06/windows-8-for-software-developers-the-longhorn-dream-reborn.ars

History

In the last few weeks, the internet has been in frenzy over the newly released demo video of Windows 8. In the video there is only mention of the new “Immersive applications” being created in a mixture of HTML + Javascript. People took this as more evidence that WPF & Silverlight are dead. Which hasn’t helped after the lack of attention which caused events like Silverlight Firestarter to be needed, or the http://FixWPF.org movement. It also doesn’t help when Microsoft have remained tight lipped even after an outcry from developers. The famous thread on the Silverlight forums has seen over 13,000,000 views. Which is more than the forums usually see in a single month.

[youtube=http://www.youtube.com/watch?v=p92QfWOw88I&w=448&h=252&hd=1]
The windows 8 UI demo video

Digging into the Windows 8 leak

A few people have been digging into the Windows 8 Milestone 3 leak and peeking into the UI framework and .dlls that exist. The most vocal of these have been @JoseFajardo and people in this forum thread http://forums.mydigitallife.info/threads/26404-Windows-8-(7955)-Findings-in-M3-Leak

What people have found so far is that while yes it is possible to create applications using HTML + Javascript, there is a whole new framework laying underneath that can be programmed against by almost any language / framework.

The first piece of the puzzle comes from the new application model for creating applications. There are a number of codenames here that need to be sorted out

  • DirectUI: The underlying framework that creates, draws the visual elements on the screen.
  • Jupiter: The new packaging format of applications on Windows 8. Allows apps to be written in language of choice.
  • Immersive applications: Current theory is that these are apps that execute within the ‘new shell’ in windows 8. And are aware of being split paned and resized. Like was shown with the RSS feed reader.

Direct UI

Direct UI has been around since Windows Vista days. Previous is seemed to be focused around UI basics for the OS such as theming app windows in the 'new vista style' vs. classic theming in WinXP. http://blog.vistastylebuilder.com/?tag=directui

Now it seems that Direct UI is being overhauled to have additional functionality to load XAML applications, new animations, etc.

Xaml loader

330fv43[1]
http://i54.tinypic.com/330fv43.png
http://forums.mydigitallife.info/threads/26357-Findings-in-M3-Leak-discussion-and-questions?p=421391&highlight=silverlight#post421391

Evidence of new animation properties

http://pastebin.com/S1XtkQid

Jupiter

interesting rumor fact : WP8 rumored to be codenamed Apollo, and Apollo is the son of Jupiter :) Jupiter being the new UI framework of Win8
http://twitter.com/#!/josefajardo/status/78826337250451457

...Jupiter is shaping up to be a very very lean SL/WPF implementation
http://twitter.com/#!/josefajardo/status/79423110755008512

...your SL/WPF skills will be invaluable for DirectUI apps, and you get a new framework that is seriously lean!!!
http://twitter.com/#!/josefajardo/status/79425349938712577

DirectUI.dll is basically Silverlight (agcore.dll) ported to Windows/WinRT
http://forums.mydigitallife.info/threads/26404-Windows-8-(7955)-Findings-in-M3-Leak?p=441627#post441627

Jose Fajardo has been a great source of information on Windows 8 leaks. From information he has dug up, as well as information on the forums, it seems that the new Jupiter programming API is a mashup between WPF & Silverlight.

As far as I can see, Jupiter is not Silverlight nor WPF, its another kind of framework that kinda similar or compatible to Silverlight/WPF code.
So Sinofsky is right, that 'Silverlight', as we know it, is still a Browser/Desktop thing.
What he didn't say is, the 'Jupiter' framework will enable you to leverage your Silverlight/.NET skills to write Immersive (or desktop) applications in XAML/C#/VB/C++, its very very similar, but not exactly the same thing.
The situation is similar to the relationship of Silverlight and WPF and Silverlight for Phone, you need to create different project in VS, then you can write very similar UI/code, even sharing most of your portable code in a common library, but the underlying technology are still very different.

https://channel9.msdn.com/Forums/Coffeehouse/Jupiter/e7960a6237024c1598639efc00d8e394

While the new Jupiter programming model may not be a direct continuation of WPF or Silverlight it does seem to have a lot of code from both technologies. Jupiter instead seems to be a ‘Next generation’ XAML based framework. A framework that can be targeted against by all main current languages used by the typical .Net developer (C#, HTML, etc)

*speculation* This could be because of the calls from the development community to make WPF & Silverlight more aligned. Perhaps we’ll see an updated ‘Silverlight’ framework when Windows Phone 8 is released that is compatible with Jupiter.

Creating applications with Jupiter

As further evidence that Jupiter applications can be created with your language of choice, and that it has roots in Silverlight, here are some examples of how to create applications.

C# & XAML

Here is an example of using C# to invoke a new Jupiter based application. The really interesting thing to notice here is that the loading screen has the iconic Silverlight loading animation!
4437[1]
http://xs.to/photo/4437
http://forums.mydigitallife.info/threads/26404-Windows-8-(7955)-Findings-in-M3-Leak?p=444628&viewfull=1#post444628

Here is a second example where they were able to get XAML content to load within a Jupiter application
5196[1]
http://c592786.r86.cf2.rackcdn.com/anonym/2011/06/11/5196.png
http://forums.mydigitallife.info/threads/26404-Windows-8-(7955)-Findings-in-M3-Leak?p=445016&viewfull=1#post445016

*update* Naive User was able to get simple databinding working
9126[1]
http://c592786.r86.cf2.rackcdn.com/anonym/2011/06/14/9126.png
http://forums.mydigitallife.info/threads/26404-Windows-8-(7955)-Findings-in-M3-Leak?p=446590&viewfull=1#post446590

C++

Example of an application being created in C++ with a single call to CreateImmersiveWindowFunc
3852[1]
http://xs.to/photo/3852
http://forums.mydigitallife.info/threads/26404-Windows-8-(7955)-Findings-in-M3-Leak?p=444200&viewfull=1#post444200

HTML + Javascript

There are some initial attempts at getting HTML working with the new frameworks. The apps and manifests have been created, but a few more hooks may be required to get a fully working version
http://forums.mydigitallife.info/threads/26404-Windows-8-(7955)-Findings-in-M3-Leak?p=446552&viewfull=1#post446552

There are mentions that you can hooks into Direct UI through the COM hooks from Javascript. And also that you may be able to use Direct UI XAML + Javascript. Similar to how Silverlight was done in the original Silverlight version 1.

Immersive applications

There is some confusion over the distinction between a “Jupiter app” and an “Immersive app”. Immersive apps require a call to CreateImmersiveWindow and can make calls to the new immersive namespace

6941[1]
http://c592786.r86.cf2.rackcdn.com/anonym/2011/06/13/6941.PNG

Immersive applications are ones that were shown to live inside of the new Windows 8 shell. Examples of functions that an immersive app can do can be seen with the RSS reader app. When it was docked and resized, it knew to display its data in a different format.

  • Classic / Jupiter applications will run in the ‘classic windows’ desktop view that was seen when they fired up excel
  • Immersive applications will be embedded within the new shell

Will this work for existing applications?

There is evidence that existing applications can be wrapped up in the new packaging format.

WindowsStore is basically written in C++ and leverages Windows Runtime. HTML5/JavaScript is just a (very very) thin layer for the interface
http://forums.mydigitallife.info/threads/26404-Windows-8-(7955)-Findings-in-M3-Leak?p=442463&viewfull=1#post442463

So while existing applications may not run with the new Direct UI framework, it seems they will still be able to be packaged and distributed through the Windows 8 App store. This was discovered by Long Zheng a few months ago.

The AppX format is universal enough so it appears to work for everything from native Win32 applications to framework-based applications (WPF, Silverlight) and even *gasp* web applications. Games are also supported.
http://www.istartedsomething.com/20110405/first-look-at-the-future-of-application-deployment-on-windows-8-appx/

Conclusion

While Microsoft only showed off the HTML hooks into Jupiter, I am a LOT more excited about the upcoming XAML based framework.

If you are an existing WPF, Silverlight or Windows Phone 7 developer, it seems that your XAML based skills will carry across fine to the new development framework on Windows 8.

My thoughts are that Microsoft announced that applications can be created in HTML in the same way that they announced it in WindowsXP with active desktop, and then again in Vista with "HTML based sidebar gadgets". It was a way of saying "hey you can use your existing web skills to create applications on Windows 8.
And that Microsoft plans on unveiling the new Jupiter SL/WPF hybrid framework for all of the "Real developers" at BUILD in 3 months.

By David Burela