You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On windows with MAUI 10.0.60, while I'm trying to clone a page's Content to another object, set the page's Content to another thing, after that when I trying set the content back to the copied object, I receive a "COMException: No installed components detected" (the message maybe localized) continually whatever I use dispatcher or use MainThread.
It's works well on other platform. See these examples below:
on .NET MAUI 10.0.50:
_2026_05_02_01_08_47_97.-.Trim.mp4
on .NET MAUI 10.0.60:
_2026_05_02_01_09_55_251.-.Trim.mp4
Steps to Reproduce
write something like this in a page:
privateasyncvoidSetContentButton_Clicked(objectsender,EventArgse){varanother=newLabel{Text="This is another label",HorizontalOptions=LayoutOptions.Center,VerticalOptions=LayoutOptions.Center};varorig=Content;Content=another;//do anything you likeawaitTask.Delay(5000);Dispatcher.Dispatch(()=>{Content=orig;});}
trigger that logic (i.e. click on the button which registered it's OnClick event to this function)
In windows you should receive a "COMException: No installed components detected"
Description
On windows with MAUI 10.0.60, while I'm trying to clone a page's Content to another object, set the page's Content to another thing, after that when I trying set the content back to the copied object, I receive a "COMException: No installed components detected" (the message maybe localized) continually whatever I use dispatcher or use MainThread.
It's works well on other platform. See these examples below:
on .NET MAUI 10.0.50:
_2026_05_02_01_08_47_97.-.Trim.mp4
on .NET MAUI 10.0.60:
_2026_05_02_01_09_55_251.-.Trim.mp4
Steps to Reproduce
Link to public reproduction project repository
No response
Version with bug
10.0.60
Is this a regression from previous behavior?
Yes, this used to work in .NET MAUI
Last version that worked well
10.0.50
Affected platforms
Windows
Affected platform versions
No response
Did you find any workaround?
not yet
Relevant log output