windows-store

UWP App Won't Start

一世执手 提交于 2019-12-07 03:48:10
问题 I have a UWP app. I'm using Visual Studio 2017 15.4.1. The UWP app is a store app and has been deployed to the Microsoft Store. My app was working fine in the store, and it was also working fine when I hit play in Visual Studio. Then recently, an isolated storage issue started occurring so I went in to the app in "Apps & Features" and hit Advanced Options -> Reset. Somehow this has fried my app installation on my machine. Our app no longer shows up as an installed app, and when I try to

zlib for WinRT?

无人久伴 提交于 2019-12-06 21:35:28
I require zlib library for the development of Windows Store app. Has anyone converted Win32 zlib project to WinRT yet? Can anyone please describe the steps to convert the existing win32 static lib project to winRT? Visual C++ is already a supported language for WinRT development, if you wan't to use zlib, just compile it together with your solution. There is nothing that is preventing you from reusing standard ISO C and C++ libraries from within the WinRT, if you are using the C++ language, you might have to expose certain aspects of your library as WinRT Components but only if you need to

How to make Windows 10 Store “forget” an app download for testing purposes?

半世苍凉 提交于 2019-12-06 16:18:24
I'm testing my Win32 app converted to UWP, so I'm new to the whole Windows 10 Store concept. So far I was able to get my app certified & published in the store via a private link. Now I would like to download and test it, but there's an issue. The first time someone sees the app it has the following options: but once you get it, all you see is this: and even if you log in under a different Microsoft account (on the same computer), or previously uninstall the app, you get this: and "free trial" simply installs it w/o a trial in that case. So my question is, how do I make Windows Store "forget"

Windows 10 Developer Mode

安稳与你 提交于 2019-12-06 07:37:15
I have Windows 10 Pro (upgraded from Windows 8.1 Pro WMC) and I see that the option "Don't use developer features" is greyed out/disabled/cannot be selected and the option "Sideload apps" is selected. Why can't I select "Don't use developer features"? How can I enable it? This is mainly due to group policy feature being enforced. You can go to group policy to enable it manually. Search for Group Policy Editor and navigate to Local Computer Policy > Computer Configuration > Administrative Templates > Windows Components > App Package Deployment Enable Allow all trusted apps to install Allows

Can Windows 10 download Windows 8.0 app from Store?

放肆的年华 提交于 2019-12-06 07:21:42
问题 I have my Windows 8.0 packages in my Windows Dev Center dashboard. I would like to know if there's a way a Windows 10 user to see and download my app from Windows Store. It seems it isn't working. How to do it? Do I have to "retarget" my project to Windows 10? 回答1: No, Windows 10 devices will not be able to see Windows 8.x apps in the Windows Store. I have the same issue in that I only target Windows 8.x. I contacted MS support, and they say that you will need to create a Windows 10 package.

How to debug a Windows Store app that crashes on a customer's machine?

核能气质少年 提交于 2019-12-06 01:51:11
I got a support email from a customer saying his app crashes when it starts and all he gets is a message like: (App Name) ran into a problem You can send info to Microsoft about what went wrong to help improve this app. Files that will be sent to Microsoft C:\Users\User_Name\AppData\Local\Temp\WER####.tmp.appcompat.txt C:\Users\User_Name\AppData\Local\Temp\WER####.tmp.hdmp I thought - Microsoft isn't going to help them really with my silly app. They should send the dump file to me for debugging, but how to do it? A sample dump file I got from a crashing app was 90MB and after zipping it is

Transparent tile but colored icon for the Windows Store

故事扮演 提交于 2019-12-05 11:22:33
I want to have transparent square tile for my app, but in the Store it should have green background behind same icon. Is there any way to achieve that? In 8.1 we had (still have) 300x300 "App tile icon" which is used for the Store I believe, but now it seems store using image from Package.appxmanifest, and even if I explicitly set non-transparent image for "Store Logo", it doesn't work. Question is: is that at all possible to have transparent tile for start screen but solid-color background icon in the Store? Yes, "App tile icon" is used only on Windows Phone 8.1 or earlier and in practice for

SDK error in Visual Studio Community 2015

梦想的初衷 提交于 2019-12-05 11:10:15
Upon rebuilding the solution to a file in Visual Studio exported from Construct 2 I received errors: MSB3774 Could not find SDK "Microsoft.WinJS.2.0, Version-1.0" MSB3774 Could not find SDK "Microsoft.WinJS.2.1, Version-1.0" Open Visual Studio Click File->New Project Click Windows Click Windows 8 There will be an option there to install the Windows 8.1 tools. 来源: https://stackoverflow.com/questions/33715663/sdk-error-in-visual-studio-community-2015

UWP App Won't Start

ぃ、小莉子 提交于 2019-12-05 09:30:39
I have a UWP app. I'm using Visual Studio 2017 15.4.1. The UWP app is a store app and has been deployed to the Microsoft Store. My app was working fine in the store, and it was also working fine when I hit play in Visual Studio. Then recently, an isolated storage issue started occurring so I went in to the app in "Apps & Features" and hit Advanced Options -> Reset. Somehow this has fried my app installation on my machine. Our app no longer shows up as an installed app, and when I try to install the app from the store, I get an error with a code of 0x80073CF9. So, I can't uninstall, or

Page constructor gets called again when navigating back in Windows 8 C# App

孤人 提交于 2019-12-04 22:54:32
问题 I have found that in Windows 8 apps, a Page's constructor always gets called again when navigating back to this page, however this is not the case in Windows Phone 7 apps. Because of this behavior all the properties of that page get lost and you need to somehow store them and reassign them after the page is reactivated. At the moment I am using the SaveState method to save the data and reassign the data in LoadState method. Both of the methods are built-in in the sample Grid/Split App. I