What is the recommended approach for building line of business apps for Windows 8? e.g. complex bespoke finance application

They clearly don't fit into the Metro style so presumably will be a regular desktop app

So is the recommendation to use WPF? Is there a vNext for this?

The type of apps I build as a developer are desktop style apps. They are not ones that would fit into the Metro style. We haven't heard much from \Build about this style of app.

So if you were going to launch a desktop app to coincide with the release of Windows 8 - what would be the prefered use of technology. (I get the impression WPF is on the way out)

Is there anything in Win RT that can be leveraged?

thanks a lot

link|improve this question

There ARE new features in wpf 4.5 (if Is there a vNext for this? meant this) – xanatos Sep 15 '11 at 20:45
1  
Specifically, "What's new in WPF 4.5": msdn.microsoft.com/en-us/library/bb613588(v=VS.110).aspx. There are a lot of data binding improvements for more smoothless declarative coding. My favorite is that binding to observable collections (INotifyCollectionChanged) is now thread-safe just like normal properties always were - no more Dispatcher.Invoke in models. – Pavel Minaev Sep 15 '11 at 21:22
I cover the new features of WPF 4.5 in a serie of post on my blog too: jonathanantoine.com/2011/09/20/… – Jmix90 Sep 22 '11 at 10:23
feedback

4 Answers

WinRT is for building Metro-style apps. If the app you're building doesn't fit the Metro style, then just build it as a traditional desktop application. Not all applications will fit the Metro style, and they don't have to.

link|improve this answer
1  
But here arstechnica.com/microsoft/news/2011/06/… they are even talking about a WinRT based Office. And from the vision i can't think why WinRT should not cover it - even if it does not now in the beta phase. – Lothar Sep 16 '11 at 6:48
@Lothar If you want to produce an application that will run on an ARM machine then you need to create a WinRT / Metro application, hence it may well make sense for Microsoft to create a cut down version of office designed to work on ARM based tablets. (although I can't see it being a replacement for the desktop version) – Justin Sep 16 '11 at 9:34
Yes, I know all apps shouldn't be Metro and I say as much in my question. I am trying to find out what the prefered desktop technology is. I get the impression that WPF is on the way out. I'd like to know what the Windows 8 way of doing desktop apps is. – ChrisCa Sep 16 '11 at 9:40
1  
@Roonooir the answer would be your preference of wpf or winforms for desktop apps as winrt is only for metro apps. – Chris Pietschmann Sep 16 '11 at 16:58
Imagine I want to break the rules and make a desktop-style application in Metro. Could I not write my own drop-down-menus? Surely they can't stop me? (the API's MUST support 'rectangles with text'). – Jeff Oct 19 '11 at 21:40
feedback

It's really early to have a good answer to that question. WPF apps will not go away and I think it will go on. What specifically will change is open. Some things might be said in one of the talks and others will show later in the process of Windows 8 and later. Personally I think there is no immediate need to change your current strategy on LOB. If it is WPF use that, if it is WinForms or WebForms it is good as well. Maybe an approach to have a special tile that sums up some key data and calls the app will put additional value.

This is just an opinion

link|improve this answer
feedback

I think the same recommendations apply as they do now. If you want deep OS integration than you're probably better off with WPF rather than Silverlight. However, Silverlight 5 does a lot to plug the current holes in Silverlight 4 if you go for an out-of-browser application.

I think it really depends on the kind of deployment you're wanting.

link|improve this answer
feedback

Suppose you stick with WPF as your target.

Then you could try to keep as much as possible of your code within the intersection of WinRT, Silverlight, and WPF. Maintain two (or three) projects and make sure that both (all) of them compile. Eventually you'll probably have to use something that's platform-specific to WPF. Simply stub it out for WinRT/Silverlight.

This gives you maximum flexibility no matter what Microsoft does with Windows 9, and allows you to keep track of how much of your code can be ported directly over. If they bring WinRT XAML to the desktop, you're covered. If they improve the Metro/desktop integration (a richer task switcher, say), you're also covered. If nothing happens, then you've only incurred a small development tax.

WPF will still be around after version 4.5. May not get many flashy new features that don't appear first in Silverlight or WinRT, but WPF is close to a mature technology anyway. Visual Studio, Expression Blend, and AutoCAD should be enough to secure its future support.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.