Replies: 1 comment
-
Thanks. The error you're getting is from WinAppSDK, not from Uno. It's likely that you can take a look at https://github.com/microsoft/microsoft-ui-xaml/issues and find your solution. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Below error coming when try to open popup ( NoDataPopup.IsOpen = true;)
Catastrophic failure (0x8000FFFF (E_UNEXPECTED))
but same code working fine on button click event
private void btnclose_Click(object sender, RoutedEventArgs e)
{
if (!ClosePopup.IsOpen)
{ ClosePopup.IsOpen = true; }
and when we write same piece of code on if else condition then its giving error
If(result==true)
{
}
else
{
if (!NoDataPopup.IsOpen)
{
NoDataPopup.IsOpen = true; // Above Error coming in this line
}
Beta Was this translation helpful? Give feedback.
All reactions