Tim Miller
Tim Miller
@the8thC If you try adding new child elements into the parent control via C# Code Behind (Ex. Create a button that will add a new element when clicked), does it...
That's fine, it was to see if GetVisualChildren would be called. If that's not being called, then, most likely, VisualDiagnostics isn't seeing that new item being added to the children,...
Before we close it, we should probably consider documenting this somewhere (Creating custom controls and writing IVisualTreeElement overrides), so others don't get bit by the same thing. @Redth Is this...
@nagilson This also happened for me with Powershell Core and CMD; it did not matter which.
`Popup` needs to be visible within MAUIs Visual Tree, and for that you need to register your control with `VisualDiagnostics.OnChildAdded` and `VisualDiagnostics.OnChildRemoved`. But how you would invoke it is tough...
Updated the title. MAUI uses WinUI, not UWP.
Using [Maui Embedding](https://github.com/dotnet/maui/pull/5218) you can add a BlazorWebview to an existing WinUI3 app and integrate it with your existing WinUI3 app (or any other "native" platform app that MAUI targets,...
Notes on this so far: The Unhandled exception is thrown because "NavigationFailed" is not handled in the MAUI `NavigationRootView`. If you handle that, you can continue down the stack to...
Okay, I made this more accessible to repro. If you replace the `App.Current.MainPage` with an existing page, you can get the same `No installed components were detected` to throw.