DarranRowe

Results 140 comments of DarranRowe

Out of curiosity, how does this compare to using [IWindowNative](https://learn.microsoft.com/en-us/windows/windows-app-sdk/api/win32/microsoft.ui.xaml.window/nn-microsoft-ui-xaml-window-iwindownative) to get the handle? This would be [WinRT.Interop.WindowNative](https://learn.microsoft.com/en-us/windows/apps/desktop/modernize/winrt-com-interop-csharp#available-via-target-framework-moniker) for C#.

Because you haven't provided any information, is the application packaged or unpackaged? Is this in your main executable or is it in a separate component? Is it self contained? If...

After looking at the code on the Windows App SDK repository, it is understandable why this "works" with admin right. That is because the manager basically just returns. AppNotifications are...

You could always try the functionality documented [here](https://learn.microsoft.com/en-us/windows/apps/design/shell/tiles-and-notifications/send-local-toast?tabs=desktop-msix). You should also be able to find the code on the [Github repository](https://github.com/CommunityToolkit/WindowsCommunityToolkit) easily enough. ([C++ version too.](https://github.com/WindowsNotifications/desktop-toasts)) But I honestly think...

The answer to this is basically "Is attaching UI content to a HWND possible?" AppWindow is basically an abstraction of some functionality of a HWND. There are two paths to...

How did you manage to find that? ![Screenshot 2024-01-04 152609](https://github.com/microsoft/WindowsAppSDK/assets/52577874/08e37ab5-84a3-42f2-bc00-ef1ccf26df2c) That runtime class isn't in the union metadata for the latest insider SDK. It isn't exposed in the SDK headers...

There are two questions, assuming that your project is created exactly how you described. In other words, assuming that the application is still packaged. First, if you remove the packaging,...

Even if they are not what you want, it is just a testing step. Those checks are only there to see if it is the package getting in the way...

https://github.com/microsoft/WindowsAppSDK/assets/52577874/452b7086-7362-4b17-b9e7-c4cfb51fbc39 It isn't a problem with Windows 11. That was also why I asked to test things without the package getting in the way. There is no reason for the...

I think the issue with ColorValueChanged is that there is [documentation](https://learn.microsoft.com/en-us/windows/apps/desktop/modernize/desktop-to-uwp-supported-api#events) stating that it isn't supported. It could be that it wasn't working in Windows 10, but has since been...