When there are no tab items displayed, or none are selected, Microsoft.Toolkit.Uwp.UI.Controls.TabView displays a blank canvas.
How can I modify this?
TabView doesn't seem to have a Content Property?
EDIT:
looks like this is not straightforward:
ln 164
...
if (_tabContentPresenter != null)
{
if (SelectedItem == null)
{
_tabContentPresenter.Content = null;
_tabContentPresenter.ContentTemplate = null;
}
else
{
if (ContainerFromItem(SelectedItem) is TabViewItem container)
{
_tabContentPresenter.Content = container.Content;
_tabContentPresenter.ContentTemplate = container.ContentTemplate;
}
}
}
...