When Clicking in a layoutDocumentPane that has no Tabbed document will cause a "Object reference not set to an instance of an object." @line 121 in LayoutDocumentPaneControl.cs
protected override void OnMouseLeftButtonDown(System.Windows.Input.MouseButtonEventArgs e)
{
base.OnMouseLeftButtonDown(e);
if (!e.Handled)
_model.SelectedContent.IsActive = true; <==== Throws the error
}
Comments: ** Comment from web user: SlickRick **
protected override void OnMouseLeftButtonDown(System.Windows.Input.MouseButtonEventArgs e)
{
base.OnMouseLeftButtonDown(e);
if (!e.Handled)
_model.SelectedContent.IsActive = true; <==== Throws the error
}
Comments: ** Comment from web user: SlickRick **
Yes it's fixed. Thanks