22,530 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
1
vote
0
answers
105
views
How can I get BLE to work with Windows 10?
I am having problems with BLE on Windows 10.
I have tried several test applications that all work fine on my development machine, but on Windows 10, version 1607 (OS Build 14393.8519) I get strange ...
3
votes
0
answers
50
views
Is there a way to access the file transfer dialogue processes using UWP in Windows 11?
I didn't see a third-party tool that existed for showing additional options for file conflicts. Windows XP had several options during a conflict. I'm looking to improve the file conflict dialogue box ...
1
vote
1
answer
54
views
How to make composition ColorShadow control circular?
I am using the ColorShadow control from the CompositionProToolkit in a WinUI/UWP project. I ported it to WinUI by replacing namespaces and Window.Current... with CompositionTarget....
2
votes
0
answers
107
views
How do I send arguments to application in windows launched with shell:appsFolder?
I know you can use the Get-AppxPackage and Get-AppxPackageManifest cmdlets in Powershell to get the package family and it's specific application entry point.
In this example with Windows Media Player ...
-1
votes
0
answers
61
views
How to resolve error MSB4036 during UWP packaging? [closed]
I encountered this error while packaging my C# UWP project. I've tried some methods, but none of them worked. Could you please help me resolve this issue?
enter image description here
Compile error ...
-1
votes
1
answer
49
views
Unity UWP build: "A scripted object probably BlankScene has a different serialization layout" when using [SerializeField]
I'm encountering a serialization error when building a Unity project for UWP and running it in Visual Studio:
A scripted object probably BlankScene has a different serialization layout when loading (...
0
votes
0
answers
87
views
How to debug Microsoft-Windows-BrokerInfrastructure service
I attempted to declare a print background task (PrintSupportExtensionBackGroundTask) in the appx manifest and register it with the system. However, when the foreground application (i.e., the main ...
0
votes
0
answers
188
views
WebView2 control in an UWP app crashes the entire console on Xbox One
Long story short: an app with a WebView2 crashes the entire system if run on a retail Xbox One
I'm having this strange issue. The crash is not just the app closing, is the entire console that restarts ...
1
vote
0
answers
62
views
How to install a package service as user using C#
I have an UWP app that has a Service as fullTrust application. I'd like to download and install that Service if it does not exist. The download it is being performed, however I have "Access ...
1
vote
0
answers
58
views
.NET MAUI - How to calculate the pixel location based on the scale of the underlying image?
My .NET MAUI app is currently targeting Windows OS. It essentially displays a map and some placemarks on the map.
Here is my relevant xaml lines:
<Grid x:Name="_gridContents">
<...
Peter's user avatar
- 12.1k
1
vote
1
answer
39
views
AudioGraph render device disconnect
I have an AudioGraph
Audio*InputNode.AddOutgoingConnection(AudioDeviceOutputNode)
User pauses audio
leaves computer and Monitor eventually turns off, disconnecting the Sound Output Device
User comes ...
1
vote
0
answers
66
views
Change service StartupType of an UWP app takes long time
I'm trying to change the StartupType of MyService from Disabled to Automatic in an UWP application.
It is working with the code:
ProcessStartInfo startInfo = new();
startInfo.FileName = "...
0
votes
1
answer
103
views
How can I obtain the AppxSignature.p7x file?
I'm currently developing a UWP application using VS2022, and have packaged and generated a package in msix format.
package:
picture
Now I want to sign the application installation package.
I tried to ...
0
votes
0
answers
91
views
Consume a C# component with WinUI 3 controls from a WinRT/Win32 project
I followed this tutorial https://learn.microsoft.com/en-us/windows/apps/develop/platform/csharp-winrt/create-winrt-component-winui-cswinrt and I would like to do the same thing but from a Win32 ...
0
votes
1
answer
117
views
How to register for the PSA printing background task
I'm working on PSA (Print Support App) development with the following environment: Windows 10 22H2 and Windows 11 SDK 10.0.26100.0.
In the appx manifest, I attempted to register a background task ...