When I apply labels and protections using the MIP SDK, the program stops in CommitAsync.
Hello, I'm using the MIP SDK to label it as C#. As I implemented and tested the feature, the CommitAsync function generated hang, so I couldn't process it. What should I check? I also post the MIP SDK log. Currently, it's stopped in the log I attached…

How to handle HotKey in WinUI3 window
Hi, I'm working on a WinUI 3 desktop application in C++. I need to capture the CTRL + I shortcut in a WinUI 3 window. Since WinUI 3 does not support KeyboardAccelerators for windows, I tried using WM_HOTKEY. However, when a TextBox has focus and uses…
How can I add my DS4 Windows app to the Microsoft Store? What are the requirements and steps for publishing it?
I have developed a DS4 Windows application and want to publish it on the Microsoft Store. I would like to know the necessary steps, requirements, and any guidelines I need to follow to get my app approved. Additionally, are there any specific policies…

How to intercept Keyboard event before its sent to widget in WinUI3
Hi, I'm working on WinUI3 desktop application inn cpp. I want to intercept keyboard event before it reaches the widget and do custom handling and not trigger the default handling. I tried KeyDown event, but with that we cant stop the default handling,…
How to convert HRESULT to human readable message
Hi, Im working on WinUI3 desktop application in cpp. I want to convert HRESULT error code to human-readable text (Like Format Message in Win32). We can use Format Message, which only prints the HRESULT error code derived from Win32, not all HRESULT error…
How to create a new winui3 c# app whose underlying libraries match the MediaCaptureWinUI3 sample
With help on another question, I've been able to connect to my industrial camera and display an image. But I've only been able to do that by starting using the MediaCaptureWinUI3 sample project. I have tried to see what is special about it to see what…

3d print stl file for circuit
Hello I have an app made in winUI, for making lines on a canvas, but I need some help. I need to be able to save this file in STL formal (for 3d printing) ViewModel using System.Linq; namespace NanoFlow.ViewModels { public partial class…

Getting an error when uploading WinUI3 project MSIX package via Partner Center - Microsoft Store
When I upload the built .MSIX or .MSIZUPLOAD package to Microsoft Partner Center, it gives an error even without uploading. Local PC validation is passed. I have associated the app with the store as well. What could be this error and how can I solve…
[Winui3]How to show a model window?
PrivacyWindow::PrivacyWindow() { InitializeComponent(); //...... window_handle_ = GetWindowHandle(); auto window_id = winrt::Microsoft::UI::GetWindowIdFromWindow(window_handle_); app_window_ =…
How to use Face Detection API in WinUI3 app?
Hi MS team, https://learn.microsoft.com/en-us/samples/microsoft/windows-universal-samples/camerafacedetection/ The link above is MS demo for UWP app, but I want to use it in WinUI3 app. When i merge the code to WinUI3, there are some elements not…
Unable to connect to any of my industrial usb3 cameras in winui3 C#
We are porting our UI from Win Forms/WPF to WinUI3 C#. My classes to connect and control industrial cameras like Basler and IDS usb3 versions work as expected in WPF. But I am unable to connect to them when using WinUI3. All of the problems (the errors…
Cannot Unlock Taskbar Pinning with LimitedAccessFeatureStatus
I want to pin my application to the taskbar. I followed the steps here, obtained my LAF keys from Microsoft, and now I am trying to implement the feature. Not sure if the LAF keys are bound to a specific application name have other restrictions. I…

WinUI3 : How to catch CTRL + A key press in WinUI3 TextBox
Hi, Im working on WinUI3 desktop application in CPP. I wanted to Catch CTRL + A press on WinUI3 TextBox. I checked online and found CoreWindow.GetKeyState(VirtualKey), but this will not work on Desktop applciation. I used TextBox.KeyDown with…
Clarification on Whitelisting IdentityServiceDNS for WNS Notifications
We are using Windows Notification Service (WNS), and I noticed the following FQDNs listed under IdentityServiceDNS in the latest XML configuration file: login.microsoftonline.com login.live.com Given that our environment does not use Microsoft…
How to simulate user interaction in WinUI3 desktop application
Hi, I'm working on WinUI3 desktop application in CPP. I want to test my application for user interaction like keyboard input, mouse input, dragging widgets/ Window, sending OS events, etc. I tried simulating with SendInput API, it did work well, but is…
color doesn't show, wrong color selected
I am building an app with WinUI (Is not very pleasant) anyway have a model, that represents color, but when I bind, I don't see the colors, and when I select the color is not the correct color namespace NanoFlow.Model { public class ColorOption(Color…
How to navigate between controls on KeyDown event.
I'm trying to have a KeyDown function that makes the focus move to the next control. I've tried this but it throws me an error: private void Obj_KeyDown(object sender, KeyRoutedEventArgs e) { if (e.Key.ToString() == "Enter") …
How to extend execution of background task in WinUI 3 (analog of ExtendedExecutionSession in UWP)?
My application has a background task that performs a cleanup of unnecessary or unused system files selected by the user. However, this task takes more than 30 seconds to complete, which exceeds the standard time limit. Question: Is there any way to…
How do I use resource files in a WinUI project
I'm trying to use the resource system in VS, but when I try to access a resource, it can't find it. Here's my setup... I have a WinUI project with a library DemoApp GfxToolkit In the GfxToolkit library project I have a resources file…

Marshalling Error for WinUI 3 Application
Hello. So I've been creating a WinUI 3 app C# in visual studio. For loading the list of installed fonts, I had to install Microsoft.Graphics.Win2D NuGet package. For that, it required me to update the NuGet packages of "WindowsAppSDK" and…
