Windows Runtime (WinRT) is a Microsoft platform architecture that allows applications to run in a sandboxed environment exposing a 'Windows Modern Style' UI/UX. Not to be confused with Windows RT, the edition of Windows 8 for ARM devices; see windows-rt.

learn more… | top users | synonyms (1)

5
votes
1answer
452 views

WinRT app deployment to multiple devices

If you build app against WinRT, can you deploy it to any device or do you have to have multiple builds (one per platform) like you do right now?
5
votes
2answers
266 views

C# WinRT component fails in UserControl constructor calling from WinJS

We are building a WinRT application with JavaScript (WinJS) that accesses REST/JSON web services via C# WinRT Component library. In the component library we have a Logon control (much like ...
5
votes
3answers
343 views

Is it possible to set a subject to the mail app in Windows 8 metro application, if I am using share contract and sharing files?

First of all, I am sharing the content from my windows 8 metro application to another app (for example Mailto app) so: Now I am sharing files to mailto app using share contract and sharing files from ...
5
votes
2answers
1k views

HttpClient GetAsync fails in background task on Windows 8

I have a Win RT app that has a background task responsible for calling an API to retrieve data it needs to update itself. However, I've run into a problem; the request to call the API works perfectly ...
5
votes
1answer
2k views

WinRt WebView control handling navigation within the control

I have a Metro app using a WebView control. I'm using NavigateToString to load a html file which may contain hyperlinks. What I then want to do is detect when one of these hyperlinks is selected ...
5
votes
2answers
1k views

How do I add a Global Exception handler to a Metro Style App?

Is there any specific way to add a global exception handler to a Metro style app, just like LittleWatson in WP7 in the App.Xaml.cs file? what is the best practice and pattern to handle this?
5
votes
2answers
1k views

List of resources for Windows 8 Metro on writing apps using HTML/CSS/JavaScript?

I see a lot of C#/XAML resources out there, but I'm wondering if there are any resources for HTML/CSS/JavaScript version on writing Windows 8 Metro apps? By resources, I mean any of these: ...
5
votes
6answers
1k views

How to use SQLite within a WinRT DLL?

I am trying to develop a WinRT DLL which uses SQLite to write database. But it seems like some win32 APIs in SQLite source code are not supported by metro, such as, LoadLibraryW, GetTempPathA. Is ...
5
votes
1answer
293 views

How do you programatically scroll to the bottom of a TextBox in WinRT?

I am writing a simple application for WinRT and I am having trouble figuring out a way to automatically scroll to the bottom of a TextBox in my code. I am writing log information to a TextBox and ...
5
votes
2answers
3k views

My Windows 8 Store app crashes in App Certification Kit, how can I found out why?

So when I am creating an App Package, the Windows App Certification Kit fails with: Crashes and hangs • Error Found: The crashes and hangs test detected the following errors:◦Application ...
5
votes
1answer
646 views

what is the WinRT equivalent of InputBindings?

WPF allows me to easily bind keyboard shortcuts at the window level to a method using the InputBindings property. What is the equivalent of this in WinRT? What is the right way to bind keyboard ...
5
votes
1answer
436 views

Using COM objects in MetroStyle apps

Is it possible to use COM objects in MetroStyle apps? I wanted to develop a simple app that uses MediaMonkey's API through COM.
5
votes
6answers
3k views

Restricting characters in a TextBox

I'm building a form in a C# WinRT app, and I'd like to restrict the characters in one of the TextBox components to numerals only. (This TextBox would be for a user to enter a year into.) I've ...
5
votes
3answers
1k views

Is there a way to write WinRT apps in Windows7 & VS2010?

Is there a way to write WinRT apps in Windows7 & VS2010? Some SDK to download? I'm particularly interested in networking stuff (Windows.Networking.Socktes) Or do I need to use Windows 8 ...
5
votes
1answer
2k views

Why do WinRT types have to be sealed?

In several places (e.g. "Creating Windows Runtime Components for JavaScript, in C# and Visual Basic" on MSDN), I've seen it specified that, if you write a class in .NET that you want to use from ...
5
votes
1answer
205 views

IsolatedStorageFile or Windows.Storage APIs for Windows Phone 8?

I'm working on a behind-the-scenes library for Windows Phone 8. We need to use the filesystem as a crude cache. I've found that there are two APIs for Windows Phone 8 though. There is the typical ...
5
votes
4answers
420 views

Dependency Injection in windows phone 8

Does anyone know of decent Dependency Injection framework for windows phone 8? I'm creating a project following mvvm which shares code with a windows store project. I was using Unity for the windows ...
5
votes
2answers
990 views

Visual Studio 11 ARM project generator fails

CMake version 2.8.9 I am writing an app for Windows 8 to run on tablets. I have written an underlying C++ library that contains the majority of my application logic. I am using CMake to compile ...
5
votes
1answer
166 views

How to receive packet upload confirmation with WinRT StreamSockets?

I have a WinRT application which performs uploads using StreamSocket and DataWriter. It tracks the time the upload takes and then calculates the throughput. The issue I am having is that I am getting ...
5
votes
2answers
3k views

Can't find d3dcompiler_43.dll for DirectX programming

I am trying to learn DirectX Programming. But I have hit a snag. I seem to be missing this file: d3dcompiler_43.dll I have installed (in this order): Visual Studio 2012 Windows 8 Windows Phone 8 ...
5
votes
2answers
921 views

How to create a modal messagebox in WinRT using native C++

I'm working on a cross-platform C++ SDK at the moment and I have to port our assert handler to WinRT. One part of the process is to display a message box, wait for the user input and trigger a ...
5
votes
2answers
484 views

Use MonoGame in WPF

Can I mix MonoGame with XAML in WPF appliaction? For example: core of game written in MonoGame, but UI written in XAML and placed on top of MonoGame-Canvas. I know that I can use XAML on MonoGame in ...
5
votes
2answers
365 views

WinRT equivalent of these .Net culture methods?

What is the WinRT equivalent of these items from the .NET framework? CultureInfo.CurrentCulture.LCID Encoding.GetEncoding(int codePage) Encoding.CodePage
5
votes
1answer
369 views

Dynamic calls to WinRT interfaces

I'd like to make dynamic (i.e. reflection-based) calls to WinRT objects, from C or C++. I will assume that I have winmd files available at run-time, so that I can find out what the methods are and ...
5
votes
1answer
528 views

Is there a limit to the number of tasks?

I am running a winrt program with multiple tasks. In the middle of running, I get the following exception: Not enough quota is available to process this command The stack trace is at ...
5
votes
1answer
154 views

Why doesn't TileUpdater.Clear() remove all updates?

I'm about to schedule quite a few tile updates, and noticed that the .Clear() method doesn't seem to work. It should 'Removes all updates and reverts to its default content as declared in the app's ...
5
votes
1answer
231 views

How can I get a stacktrace from C++ in WinRT?

I need to get a stacktrace from a C++ application, and serialize it into a string so it can be parsed later. The only API I've heard of for this on Windows is StackWalk64, which doesn't appear to be ...
5
votes
1answer
449 views

“Windows.System.Launcher” doesn't launch WordPad

I'm trying to use Launcher.LaunchFileAsync() method with a sample .txt file and it doesn't work - always returns false for WordPad (which is the default program on Windows 8 for displaying .txt ...
5
votes
1answer
81 views

Music effects in Win RT

What is another way to play sounds in Win RT instead of using Media Element? I'd like to play some "play-and-forget" sounds.
5
votes
4answers
2k views

Allowing Untrusted SSL Certificates with HttpClient

I'm struggling to get my Windows 8 application to communicate with my test web API over SSL. It seems that HttpClient/HttpClientHandler does not provide and option to ignore untrusted certificates ...
5
votes
2answers
967 views

Compute MD5 on Metro Style app in C# [closed]

How can I compute MD5 in a Metro Style app that is written in C#?
5
votes
1answer
1k views

How to P/Invoke to a native dll from Metro?

I've got a library consisting of two parts - One .net assembly that P/Invokes to a native 3rd party dll. In desktop mode this works just fine: However, when referencing the assembly from a Metro style ...
5
votes
1answer
114 views

Appname in a Tile - update

Hello I developed an application with Tile Update. When I look it in my metro, there is no Application Name, but only the small logo from the app-manifest. Is it possible to show my app-name in my ...
5
votes
1answer
210 views

Is it possible to create an IME in WinRT?

The built-in Bengali keyboard layout in Windows 8/ Windows RT is not user-friendly at all. So using an IME is the only option for most users. There are quite a few Bengali Input Method Editors in ...
5
votes
1answer
316 views

Guidance on How to stream m38u files to Metro style app (WinRT)

I'm getting m38u files to stream to a live TV channel. I've tried to open these files (as they are just list of files with the media type "MPEG/TS") and build a playlist out of them. But the ...
5
votes
3answers
1k views

Metro XAML - Issues With TemplateBinding and SolidColorBrush

Here is a simple custom control to illustrate my issue public sealed class TestControl : Control { public static DependencyProperty TestColorProperty = DependencyProperty.Register("TestColor", ...
5
votes
0answers
1k views

OpenCV for Windows 8(metro style apps) [closed]

OpenCV 2.3.1 is not supported to build computer vision apps(Metro Style computer vision applications) using windows 8's winRT APIs. Any one having any idea about the release of new openCV version ...
4
votes
2answers
2k views

HttpUtility.HtmlDecode in WinRT

Is there an equivalent to HttpUtility.HtmlDecode in WinRT? I'm developing a MetroStyle app and want to decode strings that came from a XML doc.
4
votes
5answers
2k views

WinRT - Loading data while keeping the UI responsive

I'm developing a Windows Metro app, and am getting an issue with the UI becoming unresponsive. As far as I can tell, the cause is as follows: <ListView ... ...
4
votes
3answers
2k views

AppBarButtonSyle for WinRT

Is there a list where I can look for the values for the AppBarButtons? If I'm looking in the StandardLayout.xaml I found some examples, like this <Style x:Key="ZoomOutButtonStyle" ...
4
votes
3answers
4k views

In WinRT api, how to accept user input in a dialog just like in Weather and Finance apps

I am trying to display a dialog that allows the user to type a location, just like in the "add places" function of the Weather App on Windows 8. Windows.UI.Popups namespace does not have an ...
4
votes
4answers
797 views

How can I start a Windows App Background Task immediately after registering it?

I am writing a Metro App that will only run on PCs (so there is no, or at least less, worry about the battery life). I need it to register and run a background task when the user clicks a button. It ...
4
votes
2answers
3k views

Can you debug from Visual Sudio 2012 directly to Microsoft Surface (or any Windows 8 RT tablet)?

I have not been able to find any documentation on if you can run applications in debug from a Windows 8 RT based tablet (such as the new Microsoft Surface) like you can on the iPad or Android devices. ...
4
votes
3answers
1k views

How can I get the number of logical CPUs on WinRT?

I'm trying to compile Boost 1.49.0 for WinRT. I've got it down to one method: GetSystemInfo(), which is used in boost::thread::hardware_concurrency() to obtain the number of logical processors on the ...
4
votes
1answer
2k views

Open links in external browser in WebView (WinRT)

I have a WebView component that I use to display HTML Ads in my app. When user clicks an Ad in the WebView I want to open the Ad link in an external browser. How do I do that? I need something like ...
4
votes
2answers
2k views

How do I parse a date in a Metro (C++/CX) app?

I have a C++/CX app that is processing some data from a file. It has a string in there representing the culture that was used to save the dates, and it has some dates. I need to convert them from ...
4
votes
1answer
2k views

Create style BasedOn StandardStyles.xaml in Metro App

I am creating my first WPF metro app. I am trying to extend the styles that come as part of a Metro app (in the Common/StandardStyles.xaml files) I am not modifying that file. Instead, I've created ...
4
votes
1answer
1k views

Why is [Windows::Foundation::Metadata::WebHostHidden] added by default in custom WinRT C++/CX controls?

When I create a new control in a WinRT C++/CX project, the class attribute [Windows::Foundation::Metadata::WebHostHidden] is added by default by Visual Studio 2012. Example: namespace ...
4
votes
5answers
2k views

Windows Runtime: Does it include a logging library?

System.Diagnostics.Trace, System.Diagnostics.EventLog, and System.Console all seem to be unavailable. Does WinRT include a logging library?
4
votes
1answer
296 views

List<T>.Find method in Metro apps

I'm wondering why List<T>.Find is not available when creating a Metro application in C#. It's still in .NET Framework 4.5 (Windows Forms, WPF) but not in Metro style applications. Is there an ...

1 3 4 5 6 7 74