windows-rt

Microsoft Surface Tablet: Writing Apps for Both Devices?

℡╲_俬逩灬. 提交于 2019-12-04 13:37:51
I'm having trouble finding info right now; it might still be too early. But I'm curious if developers will be able to easily write an application that can target both the ARM and Intel versions of the tablet. I would guess that the ARM version of Windows will come with near full .NET support and that VS2012 would have new templates that can target both device types, no? Is this what you are looking for? http://blogs.msdn.com/b/b8/archive/2012/02/09/building-windows-for-the-arm-processor-architecture.aspx Metro style apps in the Windows Store can support both WOA and Windows 8 on x86/64.

Closing the Windows 8 Charm Bar

倖福魔咒の 提交于 2019-12-03 15:27:46
I have a Surface Pro that I need to "lock down" as a type of Kiosk mode. I am aware that an update is on its way for "Kiosk Mode".. however I need to do this before that. I have searched all over the internet, but it appears that you cannot disable the Charm bar from a swipe on the screen . I have found ways to disable trackpads.. but unfortunately, since this tablet will be used without a keyboard, I need to disable the Charm bar. My new thought is to move the entire Charm bar HWND thousands of pixels off screen, or, maybe set a windows style on it so that it doesn't appear. I have attempted

Generating ARM code for a managed assembly on an Intel machine

回眸只為那壹抹淺笑 提交于 2019-12-02 05:28:09
Directly related to this question . Given a managed assembly for Windows Phone, how can I generate native code for it for an ARM CPU? I don't have a Windows/ARM device (neither tablet nor a phone). There's the ngen utility out there, but AFAIK it can only generate code for the host machine (i. e. Intel). The reason why I'm asking, the offsets in the crash stack that Windows Phone Dev Center provides are not MSIL offsets (I've checked - they go way beyond MSIL function size). Those look like native code offsets. Now, there's no guarantee that the ARM code that's generated offline will exactly

how to deploy metro app to windows rt device WITHOUT STORE [closed]

旧街凉风 提交于 2019-12-01 10:37:00
I developped a metro app and its for my company only. so I'm not going to upload it to windows store. I want to use my app on Windows RT devices (over 400). I tried to open appx with powershell but powershell needs developer license How can I deploy my app to rt devices ? Therefore you need Windows 8 Enterprise, which enables you, to "sideload" an App directly on your devices http://blogs.technet.com/b/scd-odtsp/archive/2012/09/27/windows-8-sideloading-requirements.aspx You must enable the Allow all trusted applications to install Group Policy setting You must activate the sideloading product

how to deploy metro app to windows rt device WITHOUT STORE [closed]

孤者浪人 提交于 2019-12-01 08:33:08
问题 It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center. Closed 6 years ago . I developped a metro app and its for my company only. so I'm not going to upload it to windows store. I want to use my app on Windows RT devices (over 400). I tried to open appx with powershell but powershell

Windows RT and c#

|▌冷眼眸甩不掉的悲伤 提交于 2019-11-30 06:59:41
问题 I need to develop Metro style application using C# and XAML which has to work on Windows RT devices and full Windows 8 OS. So I'm allowed to use only WinRT without any .net framework assemblies. I've read this question Microsoft Surface Tablet: Writing Apps for Both Devices? and this very usefull post: http://blogs.msdn.com/b/jasonz/archive/2012/06/12/what-you-need-to-know-about-developing-for-windows-on-arm-woa.aspx, but i stil have question: When i even create a Blank Metro Style

Microsoft Surface: How do I allow JavaScript touch/drag events to work without being intercepted by the browser?

天大地大妈咪最大 提交于 2019-11-29 04:42:31
I have a Google Maps map on my web site, but when using it with a Microsoft Surface tablet, the "pan" gesture is intercepted by the browser -- it tries to go to the next browser window. How do I allow the pan (drag event) to be ignored by the browser so the map behaves normally? Going to maps.google.com , the map is perfectly dragable, so there must be a workaround that Google employs. JoeDuncan According to MS's guide on "Pointer and gesture events" (here: http://msdn.microsoft.com/en-us/library/ie/hh673557%28v=vs.85%29.aspx#Panning_and_zooming ) you need to add a CSS class to the element you

Windows RT and c#

匆匆过客 提交于 2019-11-28 23:53:53
I need to develop Metro style application using C# and XAML which has to work on Windows RT devices and full Windows 8 OS. So I'm allowed to use only WinRT without any .net framework assemblies. I've read this question Microsoft Surface Tablet: Writing Apps for Both Devices? and this very usefull post: http://blogs.msdn.com/b/jasonz/archive/2012/06/12/what-you-need-to-know-about-developing-for-windows-on-arm-woa.aspx , but i stil have question: When i even create a Blank Metro Style Application project I have .NET asseblies for metro style. Do I have remove them by myself or i do something

Microsoft Surface: How do I allow JavaScript touch/drag events to work without being intercepted by the browser?

心已入冬 提交于 2019-11-27 18:45:18
问题 I have a Google Maps map on my web site, but when using it with a Microsoft Surface tablet, the "pan" gesture is intercepted by the browser -- it tries to go to the next browser window. How do I allow the pan (drag event) to be ignored by the browser so the map behaves normally? Going to maps.google.com , the map is perfectly dragable, so there must be a workaround that Google employs. 回答1: According to MS's guide on "Pointer and gesture events" (here: http://msdn.microsoft.com/en-us/library

Installing .appx without trusted certificate?

不想你离开。 提交于 2019-11-27 10:51:10
I have a Windows 8 app that I would like to deploy to my Windows RT 2. I only have the .appx , and I would like to just install it for testing by bypassing the store. However, when I run the command: Add-AppxPackage <project.appx> I get the following error: In-line script returned error output: Add-AppxPackage : Deployment failed with HRESULT: 0x800B0109, A certificate chain processed, but terminated in a root certificate which is not trusted by the trust provider. (Exception from HRESULT: 0x800B0109) error 0x800B0109: The root certificate of the signature in the app package must be trusted.*