Questions tagged [winrt]

WinRT is the new API for Windows development from Windows 8 onwards.

15 questions
35
votes
2 answers

What are C++/CX and C++/CLI, and how do they relate to C++ and WinRT?

I was considering taking up the challenge of learning C++ for designing Metro apps and that's when I came across C++/CX. Can Metro apps be coded in C++ 11? Do they require C++/CX to work? And what exactly is C++/CX? Is it possible to create a Metro…
Ein Doofus
  • 921
  • 2
  • 9
  • 13
30
votes
2 answers

What is the difference between Windows 8, WinRT, and Windows RT?

I just read that there will be two versions of Windows available: Windows RT and Windows 8. Could someone please describe what the differences between Windows RT and Windows 8 are? And how these differences may affect developers creating apps for…
jerrykobes
  • 515
  • 1
  • 4
  • 7
22
votes
1 answer

Why did Microsoft dropped the RESX model for RESW in Windows Store applications?

Why did Microsoft choose to change the resources management system from .NET's RESX files? RESX had useful code generation, providing developers auto-completion for resources names and outputting IMHO very readable code. The new RESW format is as…
pleasereset
  • 321
  • 2
  • 4
14
votes
2 answers

Can WinRT really be used at just the boundaries?

Microsoft (chiefly, Herb Sutter) recommends when using WinRT with C++/CX to keep WinRT at the boundaries of the application and keep the core of the application written in standard ISO C++. I've been writing an application which I would like to…
Bret Kuhns
  • 242
  • 1
  • 8
9
votes
1 answer

Is the upgrade path from Win32 to .NET to WinRT feasible?

I support a VB6 application. It's currently being replaced, module by module, with .NET (including a lot of new features as we go). The GUI is in WPF, but with almost zero coupling to the business logic, so that's not as important. I'm hoping the…
Scott Whitlock
  • 21,874
  • 5
  • 60
  • 88
7
votes
1 answer

Using WPF rather than WinRT for Windows 8 Pro tablet app: good or bad idea?

Our business is considering writing a line of business application for tablets to enable road warriors and executives access our data. This will be primarily used for dashboards, reports and some form filling input: quite typical scenario. Our other…
7
votes
2 answers

Are there any limitations to using WinRT instead of .Net?

From my understanding creating an application that runs on multiple architectures requires virtualization, and virtualization reduces performance since it creates a layer of abstraction. With Windows 8 supporting both Intel and ARM architectures…
jerrykobes
  • 515
  • 1
  • 4
  • 7
6
votes
1 answer

How is one supposed to deal with the intermediate buffer of DataReader class?

Summary I am developing a WAV file format reader under WinRT, and for this I need to read random amounts of structs consisting of fundamental types such as int, uint, float and so on. Back in desktop development one would rely on BinaryReader, now…
6
votes
3 answers

WinRT for 'desktop' apps

So I'm reading up about the differences between the old and the new APIs, and I can't find whether the new WinRT API will provide for desktop apps, so far it seems its only available to write Metro apps - ie the full screen, 'phone style' apps.…
gbjbaanb
  • 48,354
  • 6
  • 102
  • 172
3
votes
1 answer

Will an app made for windows store support WindowsRT, windows8 and windows 8 mobile?

I am very much confused about these. I would like to develop app for windows 8 , Windows RT , and windows mobile. I have windows 8 OS installed in my laptop. As far as I know, Windows RT is for ARM based devices. HERE ARE MY QUESTIONS: I develop…
3
votes
1 answer

WinRT and the server (ASP.NET, Azure, etc)

Has Microsoft made any indication of WinRT's current or future relationship with server development (such as ASP.NET)? While it's been made clear that WinRT is the intended future of Windows UI programming, it also includes a substantial library of…
Richard Szalay
  • 249
  • 1
  • 7
1
vote
1 answer

What capabilities of Adobe Flash are not present in the WinRT API?

As from March 2013, Microsoft allows Adobe Flash content to play by default on its immersive Internet Explorer 10: http://redmondmag.com/articles/2013/03/11/new-ie-10-flash-policy.aspx When asked about Silverlight, Microsoft says Silverlight will…
Mika
  • 113
  • 3
0
votes
1 answer

How to design a database schema for a multi-user To-Do application in Azure?

I want to create a windows 10 universal to-do app with offline sync capability. So I checked out this tutorial which helped me to get started on the offline functionality. But I was wondering how should I design my Azure database to get data…
AbsoluteSith
  • 103
  • 3
0
votes
2 answers

Creating a Application in Winrt that requires Internet

I am making a paid App for Windows 8, c#. I am wondering which is better? If my application doesn't need internet connection normally but does requires internet connection for the first time to download content data. --Makes my life easier Load…
wtsang02
  • 394
  • 3
  • 11
0
votes
2 answers

WinRT: How usable will it be?

WinRT: is it really about calling WIN32 (wrapped in COM (exposed as .NET)) via a proprietary extension of C++? That looks like a lot of wrappers and layers between the developer and the actual functionality. Does anyone trying to go with it stand…
mlvljr
  • 1,249
  • 2
  • 13
  • 25