voice assistant features on Windows only enabled for UWP applications
Hi MSFT team, I want to query, whether "WinUI3 app" can access voice assistant features. As I know UWP will be deprecated, and instead, MSFT is perfer WinAppSDK Apps (Likes: WinUI3…
Windows App SDK
How to consume a winrt/c++ lib in WinUI3 Application
Hi MSFT team, I am trying to consuming a winrt/C++ library (xxx.dll, xxx.winmd) in my application created by VS2022. If I create UWP/C# application, it's easy to add the reference by: "right click project" -> Add -> reference ->…
Windows App SDK
C#
Windows 11
NavigationView pane isnt recognizing boolean
I am using storage to save and retrieve the status of the pane in the navigationView <NavigationView x:Name="NavView" Margin="0,50,0,0" IsBackButtonVisible="Collapsed" …
Windows App SDK
.Riv animation for Winui (Windows App Sdk)
Hi, I'm working on a Windows desktop application using WinUI 3 (Windows App SDK) and I want to integrate Rive (.riv) animations into the UI. Rive is an animation tool that exports .riv files and supports runtimes for platforms like Flutter, React Native,…
Windows App SDK
Graph api token
I am saving the token in my DI container public static ServiceProvider? Services { get; private set; } public App() { InitializeComponent(); var services = new ServiceCollection(); // Register Persistent Authentication with Token…
Windows App SDK
MSIX product name issue
Hello, Please advise when creating Msix packages, how can I set different product names to be shown in the: Start Menu > Applications < My Product > vs Settings > Apps < My Product Pro > Generally, in which fields these 2 names are…
Windows App SDK
NavigatioView canont find page contructor
I am using DI services.AddTransient<CalendarPageViewModel>(); services.AddTransient<AccountPageViewModel>(); services.AddTransient<AboutPageViewModel>(); services.AddSingleton(sp => new InteractiveBrowserCredential( new…
Windows App SDK
Navigation page doesn't highlight the selected page
I am using a NavigatinonView <winex:WindowEx x:Class="HorizonHub.View.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" …
Windows App SDK
I keep getting - SignTool Error: An unexpected internal error has occurred. Error information: "Error: SignerSign() failed." (-2147024846/0x80070032)"
I am on Windows 11, and I have set everything up on Azure for Trusted app signing. I tried to sign the application using: "C:\Program Files (x86)\Windows Kits\10\bin\10.0.22621.0\x64\signtool.exe" sign /v /debug /fd SHA256 /tr…
Windows App SDK
How to get logs in a V4 printer driver under windows 10
Dear Developers, I need to implement a virtual printer driver under Windows 10 by using V4 printer driver sample. I can easily compile and install the driver in Windows 10 but I have to enable testing mode on. But the problem is that I could not get…
Windows App SDK
Support sideload MSIX auto-update via AppInstaller in Low Integrity apps
We are currently using a WinUI 3 application packaged and deployed as an MSIX Bundle (.msixbundle) via sideloading, using an AppInstaller file. This approach is working fine in standard integrity levels, and updates are being handled via the AppInstaller…
Windows App SDK
remember my choice
I have my vm, that send a message to the window namespace HorizonHub.ViewModel { public partial class MainWindowViewModel : ObservableObject { private readonly ApplicationDataContainer _localSettings =…
Windows App SDK
need help navigating
I have <Grid x:Name="rootGrid"> <NavigationView PaneDisplayMode="Left"> <Interactivity:EventTriggerBehavior EventName="ItemInvoked"> …
Windows App SDK

Winui3 register task After installing the appx just like uwp
Hello All, is there a way to register the background task in winui3 after installing the bundle. Or is it mandatory to open the UI for registering the background task. I want to implement appservice and background task to run after installation done. Any…
Windows App SDK
how can we highlight navigation view item when selected with button in winui3
when navigation view item is selected it should higlight with customised color
Windows App SDK
Can we create new installer and package that using MSIX for my windows desktop application?
We have windows desktop application developed many years ago and it is created using wix installer and packaged as exe. Can we remove wix installer and use MSIX to create installer and deploy to production as downloadable version? The application has…
Windows App SDK
I have developed a sample MAUI App using .Net 9. But it aborted at run time without showing any result.
Hi Guys, I have developed a sample MAUI App using .Net 9. But it aborted at run time without showing any result. It built the Windows Machine version without any error. When checked the output window, it shows this message. The target process exited…
Windows App SDK
com ports confusion
I am making an app that connects to a 3d printer In my vm I get the ports public void GetComPorts() { ComPorts.Clear(); try { using var searcher = new ManagementObjectSearcher("SELECT * FROM Win32_PnPEntity WHERE Name LIKE…
Windows App SDK
getting the full names of my com port makes my app crash
I made my app, that connects to COM ports to send data is working perfectly I use this public void GetComPorts() { ComPorts.Clear(); foreach(var port in SerialPort.GetPortNames()) { ComPorts.Add(port); } } but if I want to get…
Windows App SDK
Is it possible to change the WinUI3 msix display name after its installed..
I have requirement. Based on criteria, I want to change the display name in the start menu and all places like notifications of my WinUI3 msix after its installed. I went to through macro link below…