windows-store

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

How to get a crash dump (or any usable crash report) for a converted Windows Store UWP app?

烈酒焚心 提交于 2019-12-01 06:05:21
问题 I submitted to Windows 10 Store my native Win32 app that was converted to UWP app using Project Centennial converter. The app passed store certification and is available via a private link (while I'm testing it.) While running my tests the app hung up and crashed once. So I was trying to retrieve any usable crash dumps to diagnose the problem. I logged in to the Windows Dev account, then went to my Dashboard and sure enough the app was showing one crash: I then clicked on it. The new Health

How do I get UWP Uninstall to remove database completely?

走远了吗. 提交于 2019-12-01 03:58:54
问题 I have managed to get an XAF application into the Windows Store via the Desktop Bridge. When a user installs my software from the Windows Store and then chooses to uninstall, I want them to have the option to completely uninstall the software including the database. So that they won't have any problem should they later decide to re-install? Currently, the UWP uninstall does not give an option to delete the database ( or even explain how to delete it ) Thus the user may be tempted to delete

How to create SHA-256 hashes in WinRT?

馋奶兔 提交于 2019-11-30 19:37:04
I went to create a simple one-way SHA-256 hash in WinRT today and realized it didn't work. I did a validation and apparently got this: ◦API System.Security.Cryptography.SHA256Managed in MSCORLIB, PUBLICKEYTOKEN=B77A5C561934E089 is not supported for this application type. CryptoWinRT.exe calls this API. ◦API System.Security.Cryptography.HashAlgorithm in MSCORLIB, PUBLICKEYTOKEN=B77A5C561934E089 is not supported for this application type. CryptoWinRT.exe calls this API. ◦API System.Security.Cryptography.SHA256Managed.#ctor in MSCORLIB, PUBLICKEYTOKEN=B77A5C561934E089 is not supported for this

How play a .mp3 (or other) file in a UWP app?

点点圈 提交于 2019-11-30 19:11:49
I try this: PlayMusic = new MediaElement(); PlayMusic.AudioCategory = Windows.UI.Xaml.Media.AudioCategory.Media; PlayMusic.Source = new Uri(@"C:\Users\UserName\Desktop\C:\Users\user\Desktop\Kill The Alarm - Begin Again.mp3"); PlayMusic.Play(); No more error messages appear on the display (try catch runs clean through). Sorry for the short description... I can read and understand English very well but it is difficult for me to talk and write. Every Windows Store App has three folders. A Local folder, a Roaming folder and a Temp folder. Each is accessed the same way. Local is meant to store

How to create SHA-256 hashes in WinRT?

北战南征 提交于 2019-11-30 04:08:49
问题 I went to create a simple one-way SHA-256 hash in WinRT today and realized it didn't work. I did a validation and apparently got this: ◦API System.Security.Cryptography.SHA256Managed in MSCORLIB, PUBLICKEYTOKEN=B77A5C561934E089 is not supported for this application type. CryptoWinRT.exe calls this API. ◦API System.Security.Cryptography.HashAlgorithm in MSCORLIB, PUBLICKEYTOKEN=B77A5C561934E089 is not supported for this application type. CryptoWinRT.exe calls this API. ◦API System.Security

Handle Swipe Up, Swipe Down, Swipe Left & Swipe Right Gestures in a WinRT app

别说谁变了你拦得住时间么 提交于 2019-11-30 00:26:55
I have the following code: public MainPage() { this.InitializeComponent(); this.ManipulationStarting += MainPage_ManipulationStarting; this.ManipulationStarted += MainPage_ManipulationStarted; this.ManipulationInertiaStarting += MainPage_ManipulationInertiaStarting; this.ManipulationDelta += MainPage_ManipulationDelta; this.ManipulationCompleted += MainPage_ManipulationCompleted; } void MainPage_ManipulationStarting(object sender, ManipulationStartingRoutedEventArgs e) { Debug.WriteLine("MainPage_ManipulationStarting"); } void MainPage_ManipulationStarted(object sender,

Retrieve the Current App version from Package

混江龙づ霸主 提交于 2019-11-29 00:58:46
While I can get the assembly version using the following code var assembly = typeof(App).GetTypeInfo().Assembly; var assemblyVersion = assembly.GetCustomAttribute<AssemblyFileVersionAttribute>().Version; I would like to retrieve the Version from Package.appxmanifest in this case 1.0.0.4 <?xml version="1.0" encoding="utf-8"?> <Package xmlns="http://schemas.microsoft.com/appx/2010/manifest" xmlns:m2="http://schemas.microsoft.com/appx/2013/manifest"> <Identity Name="zzz" Publisher="CN=zzz" Version="1.0.0.4" /> I expected to have access to Windows.ApplicationModel , but this is not available to me

Handle Swipe Up, Swipe Down, Swipe Left & Swipe Right Gestures in a WinRT app

不打扰是莪最后的温柔 提交于 2019-11-28 21:24:58
问题 I have the following code: public MainPage() { this.InitializeComponent(); this.ManipulationStarting += MainPage_ManipulationStarting; this.ManipulationStarted += MainPage_ManipulationStarted; this.ManipulationInertiaStarting += MainPage_ManipulationInertiaStarting; this.ManipulationDelta += MainPage_ManipulationDelta; this.ManipulationCompleted += MainPage_ManipulationCompleted; } void MainPage_ManipulationStarting(object sender, ManipulationStartingRoutedEventArgs e) { Debug.WriteLine(

How to Distribute Compiled Windows 8 Metro Applications without Windows Store?

 ̄綄美尐妖づ 提交于 2019-11-28 16:39:08
I am just curious if there is a way to package up a Windows 8 Metro application to distribute it to others with the Windows 8 Developer Preview installed? It would be nice to be able to allow someone to just download and install, rather than requiring them to install VS'11 Preview and compile the code themselves in order to test out / use a Windows 8 Metro application that I've built. Is there a way to distribute a compiled Windows 8 Metro application for others to test/use since the Windows Store is not yet live? This would likely be useful for testing Metro apps on non-development machines