C++/WinRT - Can/ should i ignore the exception triggered by just clicking on a ComboBox? (Exception thrown at 0x00007FF896B006BC)

youki 1,021 Reputation points
2022-12-25T21:28:57.697+00:00

I just added a ComboBox, also tested it in pretty clean (?!) test project (https://github.com/yki5000/WinUI3_Unpackaged_CPP).
The linked app is just the example for a simple unpackaged app. The test of the other ComboBox is not contained but i used this app for testing.

<ComboBox x:Name="cmbApplication"  Width="250" CornerRadius="3">  
                                     
           <ComboBoxItem  Foreground="Gray" >eeee</ComboBoxItem>  
                                     
</ComboBox>  

Exception:

Exception thrown at 0x00007FF896B006BC (KernelBase.dll) in App1.exe: 0x40080202: WinRT transform error (parameters: 0x000000008000000B, 0x0000000080070490, 0x0000000000000014, 0x000000FE4B9E93D0).
Exception thrown at 0x00007FF896B006BC (KernelBase.dll) in App1.exe: 0x40080202: WinRT transform error (parameters: 0x000000008000000B, 0x0000000080070490, 0x0000000000000014, 0x000000FE4B9E8A90).
Exception thrown at 0x00007FF896B006BC (KernelBase.dll) in App1.exe: 0x40080202: WinRT transform error (parameters: 0x000000008000000B, 0x0000000080070490, 0x0000000000000014, 0x000000FE4B9E8970).
Exception thrown at 0x00007FF896B006BC (KernelBase.dll) in App1.exe: 0x40080202: WinRT transform error (parameters: 0x000000008000000B, 0x0000000080070490, 0x0000000000000014, 0x000000FE4B9E93D0).
Exception thrown at 0x00007FF896B006BC (KernelBase.dll) in App1.exe: 0x40080202: WinRT transform error (parameters: 0x000000008000000B, 0x0000000080070490, 0x0000000000000014, 0x000000FE4B9E7230).
Exception thrown at 0x00007FF896B006BC (KernelBase.dll) in App1.exe: 0x40080202: WinRT transform error (parameters: 0x000000008000000B, 0x0000000080070490, 0x0000000000000014, 0x000000FE4B9E7110).
Exception thrown at 0x00007FF896B006BC (KernelBase.dll) in App1.exe: 0x40080202: WinRT transform error (parameters: 0x000000008000000B, 0x0000000080070490, 0x0000000000000014, 0x000000FE4B9E8A90).
Exception thrown at 0x00007FF896B006BC (KernelBase.dll) in App1.exe: 0x40080202: WinRT transform error (parameters: 0x000000008000000B, 0x0000000080070490, 0x0000000000000014, 0x000000FE4B9E8970).

Windows development | Windows App SDK
Developer technologies | C++
Developer technologies | C++
A high-level, general-purpose programming language, created as an extension of the C programming language, that has object-oriented, generic, and functional features in addition to facilities for low-level memory manipulation.
{count} votes

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.