windows-10-mobile

Windows 10 Mobile: how can I see inside on my app folder?

我们两清 提交于 2019-12-25 09:19:43
问题 I'm deploying my Windows 10 Mobile application on my device. I want to inspect the folder to be sure the application created folders and files. How can I do that? I tried with the webapp in the phone but I access only on the Documents folder. I asked this here because in my Windows Phone with latest update (I active Windows Insider Programme then I think I have for sure the latest version of the OS) I can't explore app folders as you see on the following picture. If I click on the link User

How to update a sideloaded APPX on Windows 10 Mobile

混江龙づ霸主 提交于 2019-12-25 09:04:08
问题 Problem: I have created two APPX-files with version 0.0.1 and version 0.0.2. After the installation of version 0.0.1 the app is visible and accessible. All is ok so far. Now I want to update that app to version 0.0.2. I open the 0.0.2 APPX-file and the installation pop-up comes up. I press the install button and the app seems to install, same like the 0.0.1 installation. After about a minute I open the app again, but against my expectations version 0.0.1 is still installed. I have also tried

prevent windows 10 mobile from locking

时光毁灭记忆、已成空白 提交于 2019-12-24 14:08:04
问题 I have finally upgraded my windows 8 app to windows 10 app. Unfortunately some of the features are not working in windows 10. One of the features I am looking is preventing automatic lock screen while my application is running. In windows phone 8 I am using below code to prevent auto locking of windows phone, however, in windows 10, I didn't find this feature. PhoneApplicationService.Current.UserIdleDetectionMode = IdleDetectionMode.Disabled; What is the alternate of the above in windows 10?

Integrate skype for business in uwp app

旧时模样 提交于 2019-12-24 06:36:56
问题 I have been trying to find the best way to integrate skype for business in my uwp app. However, there are a ton of articles in MSDN and Skype/Office 365 developer pages. Most of them are from many months ago. What I want to do is simply place a skype call OR skype chat from within my uwp app. I would prefer to integrate it fully into my app but I am also okay if it just launches the skype for business app. However, I am not seeing any way to do this. Am I missing something or did MS leave

UWP ResourceDictionary is not being loaded when I add a second object to it

百般思念 提交于 2019-12-24 00:34:33
问题 I have a UWP application for Windows 10 with MVVM Light plugged in. I store a ViewModelLocator in the App.Resources. When I have just a ViewModelLocator in my App.Resources, everything works fine. <Application.Resources> <viewModel:ViewModelLocator x:Key="Locator" /> </Application.Resources> As soon as I add a String, Converter or something similar, application doesn't crash but the ViewModelLocator constructor is not being called anymore. No errors or exceptions being thrown, just

Check progress of download operation which started in background task

送分小仙女□ 提交于 2019-12-23 23:09:58
问题 I have an application where users can download some files and these files can be also downloaded via BackgroundTask triggered by push notification for example. When the app is not running and I receive push notification, BackgroundTask starts to download the file. If I launch the app and the file is still downloading I would like to see progress of it. I am able to get all downloading files BackgroundDownloader.GetCurrentDownloadsAsync() . If I have list of DownloadOperation , am I able to

Windows Phone: Missing blur event in IE or Edge when back button pressed

旧城冷巷雨未停 提交于 2019-12-23 22:15:24
问题 The following scenarios are relevant to Windows Phone devices (IE or Edge). Scenario 1: If an input element has the focus and the soft keyboard is up, pressing the hardware back key blurs the focused element and pops down the keyboard as it should. However, there is no corresponding blur event fired. Scenario 2: If an input element has the focus and the soft keyboard is up, tapping outside the input element blurs the focused element, pops down the keyboard and fires a blur event. Question: Is

Can not call Task.Run() at backgroundTask

泄露秘密 提交于 2019-12-23 17:33:50
问题 I want to do something in thread at background task, so I tried using Task.Run() but it does not work. Anyone can show me another way to create thread in background task. This is my code: public sealed class KatzBackgroundTask : IBackgroundTask { public void Run(IBackgroundTaskInstance taskInstance) { RawNotification notification = (RawNotification)taskInstance.TriggerDetails; string content = notification.Content; System.Diagnostics.Debug.WriteLine(content); testLoop(); } async void testLoop

Windows 10 UWP - C#: How to check network type (EDGE/3G/LTE), not only cellular vs. WLAN? [closed]

淺唱寂寞╮ 提交于 2019-12-23 13:15:20
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 4 years ago . How can I check which type of cellular connection (EDGE/3G/LTE) is used at the moment? I only know how to check if device is on cellular connection or WLAN, but I need specific type of cellular connection. Thank you! 回答1: NetworkInformation should be available for Windows 10

Unable to access local Web API from Visual Studio 2015 WIndows 10 Phone Emulator

泪湿孤枕 提交于 2019-12-23 05:11:25
问题 I'm currently developing a UWP phone app which calls a Web API. When using the Visual Studio 2015 (Update 3) mobile emulators, calls to the Web API work fine for emulator versions 10.0.10240.0 and 10.0.10586.0. However, for the latest emulator versions 10.0.14393.0 my API calls all fail. The http address I'm using to access the Web API, which is running under IIS Express, is http://localhost:64210 . Using the emulator's browser, I can access this URL in 10240/10586, but not 14393. I've tried