Questions tagged [windows-rt]

Windows RT is a version of Windows 8 for ARM devices. Use this tag only for questions about Windows RT. For questions about the Windows Runtime ("WinRT"), use [windows-runtime].

Windows RT is a version of Windows 8 running on devices with ARM architecture. Microsoft's reference implementation of the Surface tablet provides Windows RT and offers a NVIDIA Tegra 3 Quad Core running at 1.30GHz with 2.00GB of RAM.

The OS isn't typically sold in a box or as a download, but rather preinstalled on a device - typically a slate tablet.

The main difference from other Windows 8 versions is that it does not allow to install old -based desktop applications, only -based , except some Microsoft applications like Office or system ones.

231 questions
0
votes
1 answer

Access a hidden file programatically in Windows RT?

Is there any way to access hidden files programatically in Windows RT? Whenever I try to do GetFileAsync for a hidden file, I get UnauthorizedAccessException.
0
votes
1 answer

SQLite Search in Chinese is not working in Windows RT

I am writing a Windows RT app (Windows 8.1) in which I have used SQLite for the database. When I change the language setting of the machine to Chinese and I try to search a entity with a Chinese name, its returning me null even though the file…
arvis
  • 29
  • 4
0
votes
1 answer

How to dynamically set ComboBox binding based on bool values?

I've come across the situation where I need to dynamically set the combo box's Items source, based on which toggle button is selected. In the app there are two toggle buttons, Higher/Ordinary. I want to set the combo box's binding to the list…
Brian Var
  • 6,029
  • 25
  • 114
  • 212
0
votes
1 answer

Set ZoomFactor when page loads

How can I set the ZoomFactor of my image using the OnNavigatedTo method? I've tried using this code but it doesn't work. protected override void OnNavigatedTo(NavigationEventArgs e) { navigationHelper.OnNavigatedTo(e); …
wbk727
  • 8,017
  • 12
  • 61
  • 125
0
votes
1 answer

Is There a FrameworkElement.RegisterName Equivalent in WinRT?

I am developing a Windows Runtime application, and I would like to register a name for a child control (after Xaml parsing), just like I can do with WPF, using this method…
Mike-E
  • 2,477
  • 3
  • 22
  • 34
0
votes
1 answer

Analyze concurency::task() API & why do we need this?

I'm, trying to understand the syntax of the concurrency::task in the below code snippet. I'm unable to understand this code snippet syntax. How do we analyze this: What is "getFileOperation" here. Is it an object of type StorageFile class ? …
codeLover
  • 3,720
  • 10
  • 65
  • 121
0
votes
1 answer

In Windows RT and Universal Apps, Where Are StaticResource and ThemeResource Defined?

I am looking in a WinRT/Universal Application Xaml file, and I see references to StaticResource and a new (in Windows 8.1) ThemeResource markup extension. Here is an example:
Mike-E
  • 2,477
  • 3
  • 22
  • 34
0
votes
1 answer

Can I send out redemption/test codes for Windows 8 applications?

Is there a redemption/test code feature as a developer of a Windows 8 application? So reviewers/testers don't have to pay for it? Can't see a way to do this on the developer dashboard and haven't found a clear answer anywhere that says you can.
Rob Segal
  • 7,515
  • 12
  • 43
  • 72
0
votes
1 answer

Raise tapped event windows phone

I need to open a ComboBox when the user perform a tap on a button, any idea? I have searched a lot but I haven't find useful stuff.
frenk91
  • 919
  • 1
  • 15
  • 30
0
votes
0 answers

Rotate A user control very slowly

I have developed a user control for my windows 8.1 app. I want to rotate the control at a certain angle may me 180 degrees . I am using RotateTransform and the image is rotating at one go !! I want a smooth rotation and the complete rotation should…
Apoorv
  • 2,023
  • 1
  • 19
  • 42
0
votes
1 answer

Image control and Image resizing when Stretch is set to Uniform

I have this peculiar problem. I am having a user control . I am making an app for Windows 8.1 where I would choose an image from my Picture gallery. The image would open in my app with Stretch is Uniform and Horizontal And vertical alignment to…
Apoorv
  • 2,023
  • 1
  • 19
  • 42
0
votes
2 answers

Zoom Cropped pixels in a user control

I have developed a user control. The user control is like a magnifier glass . The user control has an image button which shows images cropped pixel by pixel . StorageFile storageFile = await StorageFile.GetFileFromApplicationUriAsync(new…
Apoorv
  • 2,023
  • 1
  • 19
  • 42
0
votes
0 answers

Bluetooth api for Windows phone in Windows 8 throwing exception

A call to the Windows phone 8 bluetooth api is not working in Windows 8. I'm getting the following exception: System.InvalidOperationException' occurred in sampleunivapp.Windows.exe but was not handled in user code WinRT information:…
user925
  • 21
  • 5
0
votes
1 answer

How to access universal shared files?

I have a universal windows store project. I want to access shared files which are accessible by both windows 8.1 and wp 8.1. StorageFolder storageFolder = Windows.Storage.ApplicationData.Current.LocalFolder; StorageFile sampleFile = await…
Tany3450
  • 338
  • 2
  • 11
0
votes
0 answers

How do I retrieve Device Information on Windows Phone 8.1 Runtime App?

I need to retrieve the following information from the device to be used in a testing and analytics App: Device Name eg. MyPhone1, Device Manufacturer eg. Nokia, Device Processor, Device Processor Type eg. ARM, Device RAM, Device supported networks…
blagnom650
  • 47
  • 7