castorix

Results 42 comments of castorix

> @castorix sadly, this also doesn't work for me... I converted an old C++ function into C#, mixing all APIs. If it does not work for you, I have no...

I tested your .flac file with the MediaEngine test I had uploaded (https://github.com/castorix/WinUI3_MediaEngine) and I can see a similar bug (silence for a few seconds after seeking) but I don't...

> Looking forward for native splash screen support added to WinUI 3, Splash Screen Like UWP does really makes a difference in User Experience A Splash Screen is very simple...

> Listed below are the limitations of the current File/Folder picker > Unable to pick files and folders in a single instance of the picker dialog > Unable to pick...

> The[ windows forms folder dialog](https://i.stack.imgur.com/Y5zXQ.png) was much more intuitive This is [SHBrowseForFolder](https://learn.microsoft.com/en-us/windows/win32/api/shlobj_core/nf-shlobj_core-shbrowseforfolderw), that you can call in WinUI

I tested in C# on Windows 10 22H2 with _updateBadgeGlyph_ from MSDN and it does not seem to work either A workaround can be with [ITaskbarList3::SetOverlayIcon](https://learn.microsoft.com/en-us/windows/win32/api/shobjidl_core/nf-shobjidl_core-itaskbarlist3-setoverlayicon?redirectedfrom=MSDN) A test on Windows...

MS added some samples in the SDK : https://github.com/microsoft/windows-classic-samples/tree/main/Samples/TaskbarManager But I could not make them work on my Windows 10 OS.

There is a similar issue at : https://github.com/microsoft/microsoft-ui-xaml/issues/8892

> Trying to find a workaround but not good results until now... If you just want to share data between instances of an application a simple way is with _MemoryMappedFile_

Most of samples like [WinUI Gallery](https://github.com/microsoft/WinUI-Gallery/tree/main) are in C# (a lot easier to write than C++/WinRT (while I use C++/Win32 since 90's)) There are also some MS samples in C++...