uwp Questions
2
Solved
I've created a UWP project that I'm building with a TFS vNext build. When it creates the package, it uses the version from the appx manifest. Instead, I'd like to set the version number from the ms...
5
Solved
An app I'm working on requires a ConverterParameter to be an enum. For this, the regular way to do would be:
{Binding whatever,
Converter={StaticResource converterName},
ConverterParameter={x:...
Telophase asked 12/8, 2015 at 11:28
5
Solved
I created app for uwp (win 10 desktop). I could not build package for store. I received an error: it is necessary to update the certificate. I have updated certificate and build my package. But whe...
Bonanza asked 3/12, 2016 at 19:21
8
Solved
It's possible to use the ObjectDataProvider in a WPF application to bind an enum's string values to a ComboBox's ItemsSource, as evidenced in this question.
However, when using a similar snippet i...
2
I use installing of my UWP application via .appinstaller file:
Read more about this approach
But now the installation works only for current user.
Could I somehow install my app throw .appinstall...
Kremenchug asked 14/5, 2018 at 8:51
5
When testing my web API with Postman my API get executes fine!
When it comes to running the code with HttpClient in my client application the code executes without error but without the expected r...
Elwandaelwee asked 31/3, 2017 at 19:18
2
Solved
I am making a Universal Windows App and I want my apps icon on the task bar to have a transparent background so it isn't in a coloured box.
A lot of Microsoft's own stock apps are like this (Mail,...
Lessard asked 30/7, 2015 at 23:8
1
Solved
After updating Google.Apis.Oauth2.v2 NuGet package to v. 1.60.0.1869, I start getting exception Access to the path C:\Users is denied when trying login with Google in my UWP app. Here's my code:
st...
May asked 1/6, 2023 at 15:9
7
I have UWP app build in VS 2017 and many project in my solution have build warning like below. How to get rid of them?
Warning "C:\Program Files (x86)\MSBuild\15.0.Net\CoreRuntime\Microsoft.Net....
Megathere asked 30/8, 2017 at 14:13
5
Solved
I dont really want to use the accent color that the user has chosen in Windows in my app, and instead want to have my own color show.
I can change it manually on all the items by by making new styl...
Izmir asked 5/8, 2015 at 12:0
1
I haven't really found my answer to my problem anywhere, so I really hope that someone actually was solving similar problem before me.
I'm developing an UWP application after I was messing with MV...
3
Solved
I created UWP app with Windows Template Studio that introduced at Build2017.
Below class is a part of generated code from it.
public class SampleModelService
{
public async Task<IEnumerable&l...
Arlaarlan asked 21/5, 2017 at 11:20
5
Solved
I have the following code:
public void tbSpeed_KeyDown(object sender, KeyRoutedEventArgs e)
{
e.Handled = !((e.Key >= 48 && e.Key <= 57) || (e.Key >= 96 && e.Key <= 10...
Billbillabong asked 21/10, 2012 at 19:13
2
Solved
I'm using VS2022, .NET7.0.
I'm trying to implement a function that automatically connects the SerialPort using USB's vid and pid.
I found that it was easier to implement by refering to this article...
5
In PowerShell, if I run Get-AppxPackage, I get a list of UWP apps installed, including mine.
For example:
Name : TonyHenrique.tonyuwpteste
Publisher : CN=tTony
Architecture : X64
ResourceId :
Vers...
Promptbook asked 23/10, 2017 at 15:38
4
I'm trying to write a simple phone app using UWP that will insert an image from a Windows folder location into a table on SQLite and view it on the Windows phone.
I found this article on technet f...
Gonta asked 19/11, 2017 at 15:49
4
I would like to be able to launch a Windows 10 UWP app from a single command line (cmd Windows 10) input. I am having issues concatenating the strings together to form the entire package name (this...
Neptune asked 18/8, 2018 at 18:14
2
Solved
I'm getting this error message:
The type initializer for 'Microsoft.Data.Sqlite.SqliteConnection'
threw an exception.
To be more explicit, I get:
Message = The type initializer for
'Microsoft.Da...
2
Solved
when I first published my app the certificate was created automatically Visual Studio. I keep my project in git, and the file is there added to the list .gitignore. I cloned your repository on anot...
Zaria asked 13/2, 2017 at 17:27
2
Solved
Microsoft announced in May 2018 that they would soon be publishing the Fluent Design Toolkit for WPF.
Is there already more information when it will be published?
2
I want to set position attribute of an UIElement to an absolute value of X and Y.
How can I do this operation?
And why absolute positioning in UWP is so hard?
2
Is it possible in UWP to force it to open the On Screen Keyboard (osk.exe)?
For example, in C# it is possible using System.Diagnostics.Process.Start("osk.exe");
Doing the above in UWP results in ...
Theocracy asked 21/9, 2016 at 13:34
1
Solved
I followed https://medium.com/flutter-community/publishing-flutter-windows-apps-to-microsoft-partner-center-with-codemagic-b1962575510c but the channel dev and beta do not have the option to enable...
3
Well, I want to make the ListViewItem in UWP ,that'll be changing his view on selecting. So I need to change the Visibility property of some elements of ListViewItem on selecting.
I found some wa...
7
I've been trying to add an out of process background task to my project to update my App's live tile. The task needs to make a database call to get some data, then process that data to send out a f...
Garrot asked 18/5, 2018 at 7:7
© 2022 - 2024 — McMap. All rights reserved.