Dan
Dan
As a workaround, I found that changing the `SelectedValue` binding, from `{x:Bind}` to `{Binding}` fixes the issue. I've no idea why...
It's happening to me and to another collegue (plain CS). VS2022 + CodeMaid + XAML Styler and the default set of extensions (Live share, ML.NET, Xamarin, ..)
I've modified the csproj(s) to target netstandard 2.0 and I can confirm it work flawlessly. Maybe you can change the issue and title it "Target netstandard2 instead of netcore1.1".
I think you should implement InterTabClient. In this way you can control creation of MainWindow instance. Here's mine: ```c# public class InterTabClient : IInterTabClient { public INewTabHost GetNewHost(IInterTabClient interTabClient, object...
I know the issue is old, but maybe it can be of help to someone. The sizing is made by the `{TemplateBinding ItemsPresenterWidth}` and `{Binding RelativeSource={RelativeSource Mode=FindAncestor,AncestorType={x:Type dragablz:DragablzItemsControl}},Path= ActualWidth}` which...