windows-10

UWP app on Xbox

家住魔仙堡 提交于 2019-12-19 09:54:04
问题 During the events and promotions around Windows 10, I always see that the UWP apps can run on all devices from Microsoft family. To confirm that, when I am browsing for UWP apps on my browser and I click to see the source code from an app page, I am able to see the following meta data: <meta name="description" content="Download this app from Microsoft Store for Windows Phone 10, Windows 10, Surface HUB, HoloLens, other Windows devices, Xbox. See screenshots, read the latest customer reviews,

MySQL- Wamp server is not working after win10 upgrade

强颜欢笑 提交于 2019-12-19 04:46:27
问题 I just upgrade to windows 10. after upgrade my MySQl is not starting, wamp server icon orange , I can see Apache server is running but MySQL is not running. Please help Thanks 回答1: ------- SOLVED --------- This is what worked for me I went to /wamp/bin/mysql/mysql5.6.17/data And deleted following auto.cnf , xxxxxxxx.err, xxxxxxxx.pid , xx_logfile0 , xx_logfile1 And restarted , It worked !! Thanks for all your help 回答2: Make sure the 2 services are still installed. They weren't for me. To

Perl not running in Windows 10

醉酒当歌 提交于 2019-12-19 03:59:34
问题 I've just downloaded ActivePerl for Windows 10 on my 64 bit laptop, but when I go to the command prompt, perl -v fails unless the directory is C:\Perl64\bin in which case it tells me that I have Perl 5.20.2 Copyright Larry Ullman etc, but if I try and open perl files anywhere, nothing happens, if I run perl.exe it just shows me a command window with a flashing bar and nothing happens, and when I try and run .pl programs in Eclipse it tells me predictably that because perl-v failed it won't

How to disable Winscard Discovery in Windows 10?

荒凉一梦 提交于 2019-12-19 03:46:12
问题 I'm testing smart cards using ACR122U. However, when I put a card on it, Windows will automatically send APDU commands to it. According to the question windows 8 disable smartcard plug and play, I disabled Smart Card Plug And Play. But I can still see the PIV selection which is called Winscard Discovery. How can I disable this in Windows 10? 回答1: You have 3 solutions 1) Edit computer policies Launch gpedit.msc Section Computer Configuration --> Administrative Templates --> Windows Components

ShellIconOverlayIdentifiers and windows10

青春壹個敷衍的年華 提交于 2019-12-19 02:37:14
问题 Icon overlays are becoming an annoying problem for me. On windows10 it seems like you can have 11 (or is it 10?) overlay icons set, others are ignored. This is very low number that is easily used even by one service. So windows just takes first N settings as by alphabetical order which started the following petty trend. This is my registry: As you can see, companies started adding spaces to get to the front of the order. In recent update dropbox added third space already! Question: 1) Is

Uwp navigation example and focusing on control

我的未来我决定 提交于 2019-12-19 02:07:03
问题 I use uwp navigation example as an example for my application navigation. I need to set the focus on TextBox. I try it on uwp navigation example. For BasicPage I add this code: <StackPanel Orientation="Vertical"> <TextBox x:Name="Test" /> <TextBox x:Name="Test1" /> </StackPanel> public BasicPage() { this.InitializeComponent(); this.Loaded += BasicPage_Loaded; } private void BasicPage_Loaded(object sender, RoutedEventArgs e) { Test1.Focus(FocusState.Programmatic); } Test1 does not receive the

How to maximise a Windows 10 Universal Application's window to full screen when running on a desktop?

若如初见. 提交于 2019-12-18 16:49:56
问题 When building a universal application using Windows 10 (or Windows 8.1 WinRT), is it possible to force the application's main window to maximise on launch? This is obviously natural behaviour for the application when running on a mobile device but not when running on the desktop. This is certainly possible using WinForms: How do I make a WinForms app go Full Screen How to display a Windows Form in full screen on top of the taskbar? But I haven't so far managed to find anything in the

What's the supportedOS GUID for Windows 10?

…衆ロ難τιáo~ 提交于 2019-12-18 14:41:13
问题 We're detecting the OS version for statistics. Starting with Windows 8.1, the OS "lies" about its version when using GetVersion . However, System.Environment.OSVersion still calls this API as of .NET 4.5.1. As such, we've added 8.1's GUID to the manifest, which works great. Now, I'd like to prepare the same for Windows 10. Is the GUID for this known yet? (edit) P/Invoking VerSetConditionMask and VerifyVersionInfo to check for 6.4 or greater does appear to work. 回答1: <!-- This Id value

Windows 10 : naming programs main.exe cause them to show pop up

孤街醉人 提交于 2019-12-18 14:12:36
问题 On windows 10 when we create a program named main.exe or rename a program to main.exe , the program will show a pop up as seen here : There is 2 different pop up than can be shown : -the game bar one (French and English version): -the screenshot one : (In English: Press Win + Alt + PrintScreen to take a screenshot) I originally discovered the problem while using python and cx_freeze, I have tested this on multiple programs, including (as seen above) renaming notepad++.exe to main.exe , and

How to Implement In-App Purchases in Windows 10 Apps?

為{幸葍}努か 提交于 2019-12-18 13:19:48
问题 I want to integrate in-app purchasing in my windows universal app. I do the following thing before coding. Make App on Windows Dev Center Add products with details in IAPs section and submit to Store as you can see in Image After that I use the following code in my app to get list of products of In-App purchasing and button to purchase product. I also used CurrentApp instead of CurrentAppSimulator in my code but it goes in exception. private async void RenderStoreItems() { picItems.Clear();