tagged [win-universal-app]
Windows 10 Universal App - Type exists in both "Windows.Foundation.UniversalApiContract"
Windows 10 Universal App - Type exists in both "Windows.Foundation.UniversalApiContract" somehow (I have not even done anything) I get many erros in Visual Studio 2015 but I cant understand what the p...
- Modified
- 3 Jul at 18:2
Is it possible to send Toast notification from console application?
Is it possible to send Toast notification from console application? Is it possible to send Toast notifications from console application using ? I know that it is possible to send Toast notifications f...
- Modified
- 27 Jun at 20:49
How to generate a new .pfx file after being lost from source control?
How to generate a new .pfx file after being lost from source control? I'm using GitHub to host an open-source Windows 10 app I'm developing. I accidentally gitignored my app's PFX file, so when I dele...
- Modified
- 22 Jun at 08:43
Universal Apps MessageBox: "The name 'MessageBox' does not exist in the current context"
Universal Apps MessageBox: "The name 'MessageBox' does not exist in the current context" I want to use MessageBox for showing download errors in my WP8.1 app. I added: but when I type: I get error: In...
- Modified
- 15 Apr at 12:49
How to set time out for http client request operation in windows phone 8.1/Windows 8.1
How to set time out for http client request operation in windows phone 8.1/Windows 8.1 How to set Timeout property to `Windows.Web.Http.HttpClient` operation. The code sample I used is below. ``` publ...
- Modified
- 16 Aug at 19:33
UWP - Image Uri in Application Folder
UWP - Image Uri in Application Folder I'm having a little issue here in showing images. So when I'm trying to load images from XAML, I can use a relative uri to the image source like this : But if I t...
- Modified
- 31 Aug at 15:29
How to compare Color object and get closest Color in an Color[]?
How to compare Color object and get closest Color in an Color[]? Let's say I have an array with colors (with the whole color spectrum, from red to red.). A shorter version would look like this: Now if...
- Modified
- 9 Dec at 08:42
What is the recommened way to store API keys and secrets in a UWP app?
What is the recommened way to store API keys and secrets in a UWP app? For a UWP app what is the recommend mechanism for storing secrets that need to be deployed with an app such as API keys and secre...
- Modified
- 10 Apr at 13:51
Adding references in a shared (.shproj) project
Adding references in a shared (.shproj) project I'm having an issue with adding a dll reference to a shared project. As seen in the picture below I have a Universal solution with a project for windows...
- Modified
- 4 May at 11:45
Comparison Visual studio 2015 and Blend for Visual Studio
Comparison Visual studio 2015 and Blend for Visual Studio I am a newbie about Windows store apps development. What is the main function and benefits of Blend for Visual Studio. There is already a XAML...
- Modified
- 17 Feb at 07:28
C# UWP - Can't add reference to project in same solution
C# UWP - Can't add reference to project in same solution I need to write a UI for an API utility that I need to use. I have created a new Universal Windows App for the UI, added the API utility projec...
- Modified
- 27 Mar at 18:48
UWP Enable local network loopback
UWP Enable local network loopback I wrote a UWP-App and after generating and installing the .appxbundle, every time I start the App I get a `net_http_client_execution_error`. The App is starting and r...
- Modified
- 11 Mar at 13:36
Setting window size on desktop for a Windows 10 UWP app
Setting window size on desktop for a Windows 10 UWP app I've just started learning UWP app development on Windows 10 Pro using Visual Studio 2015 Community Edition. I tried to modify the [C# version o...
- Modified
- 6 Jul at 11:4
MediaElement web Video doesn't stop buffering
MediaElement web Video doesn't stop buffering I m using MediaElement to play a web video. When I left the page I noticed in the Task Manager that my app was still using 10% of network and didn't drop ...
- Modified
- 8 Feb at 17:54
Windows Phone 8.1 Universal App terminates on navigating back from second page?
Windows Phone 8.1 Universal App terminates on navigating back from second page? I have 2 pages in my Windows Phone 8.1 Universal App. I navigate from .xaml to .xaml by using a button with the click ev...
- Modified
- 4 Feb at 18:30
ServiceStack Service Client for Universal App
ServiceStack Service Client for Universal App We have a WinRT app that uses the `ServiceStack.Client`. We now want to create a Windows Phone 8.1 version of it. The best option for that in terms of cod...
- Modified
- 8 Jun at 17:20
Cannot register GattCharacteristicNotificationTrigger Background Task after Creators Update
Cannot register GattCharacteristicNotificationTrigger Background Task after Creators Update The background task registration code looks like this: ``` var builder = new BackgroundTaskBuilder(); builde...
- Modified
- 20 Apr at 06:18
AdaptiveTrigger and DataTemplate
AdaptiveTrigger and DataTemplate Will AdaptiveTrigger work in a DataTemplate? That's my code i'm using to customize my ShellNavigation, it is working fine except the visual states. They will not trigg...
- Modified
- 19 Aug at 06:58
How to use Acrylic Accent in Windows 10 Creators Update?
How to use Acrylic Accent in Windows 10 Creators Update? I can't find any detailed document to use Acrylic Accent ([CreateBackdropBrush](https://learn.microsoft.com/en-us/uwp/api/Windows.UI.Compositio...
- Modified
- 23 May at 11:47
Settings plugin not working properly with DateTime property
Settings plugin not working properly with DateTime property I am using the [settings plugin](https://github.com/jamesmontemagno/Xamarin.Plugins/tree/master/Settings) and I have it working to store som...
- Modified
- 20 Jun at 09:12
UWP Check If File Exists
UWP Check If File Exists I am currently working on a Windows 10 UWP App. The App needs to Check if a certain PDF File exists called "01-introduction", and if so open it. I already have the code for if...
- Modified
- 24 Aug at 08:41
How can a universal windows app have multiple independent windows (Like Microsoft's app “Photos”)?
How can a universal windows app have multiple independent windows (Like Microsoft's app “Photos”)? I do know how to open additional windows using `TryShowAsStandaloneAsync`. However, if the original w...
- Modified
- 23 May at 12:1
Text input in message dialog? ContentDialog?
Text input in message dialog? ContentDialog? I am wondering what is the best way to allow a user to input text into a MessageDialog in a Windows 10 universal app.(Forgot password system). From the res...
- Modified
- 30 Dec at 23:6
Mocking framework in UWP Apps
Mocking framework in UWP Apps Im trying to find a good mocking framework to Unittest my UWP App, bt it seems that all good Mocking infrastructures (MOQ, RhinoMocks etc) understandably rely on Dynamic ...
- Modified
- 28 Mar at 23:7
UWP equivalent function to FindAncestor in uwp
UWP equivalent function to FindAncestor in uwp I have a list of orders and when the order status is , I want to blink the text. So far, my code works. However, it will throws exception: > WinRT inform...
- Modified
- 3 Mar at 07:11