.Net Maui Embedding ContentView not showing #20367
Answered
by
morning4coffe-dev
cbdefontenay
asked this question in
Q&A
-
Hi! public sealed partial class MainPage : Page
{
public MainPage()
{
this.Content(
new StackPanel().Children(
new Grid().RowDefinitions("Auto,*")
.Children(
new TextBlock().Text("The Maui Embedding view will be displayed here:").Grid(row: 0),
new MauiHost().Grid(row: 1).Source<EmbeddedControl>()
)
)
);
}
} But somehow I just get to see the first TextBlock text on the screen but not the Maui ContentView. Does someone has an idea? |
Beta Was this translation helpful? Give feedback.
Answered by
morning4coffe-dev
May 16, 2025
Replies: 1 comment 4 replies
-
Hey @cbdefontenay, Thank you for reporting this! Could you provide a bit more detail to help me reproduce the issue?
Thanks in advance! |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I’ve opened an issue here: #20439, where you can track its progress.