private void WindowsXamlHost_ChildChanged()

in XamlIslands/ComplexCustomControl/ComplexCustomControl.Wpf/MainWindow.xaml.cs [30:37]


        private void WindowsXamlHost_ChildChanged(object sender, EventArgs e)
        {
            if (sender is WindowsXamlHost windowsXamlHost &&
             windowsXamlHost.Child is MarkdownView markdownView)
            {
                markdownView.MarkdownText = "This is **markdown**";
            }
        }