Replies: 2 comments 3 replies
-
Missed the code that I tried to create the dock: var subTreeView = new SubTreeView();
var subTreeViewModel = new SubTreeViewModel
{
Id = "SubTree",
Title = "SubTree"
};
DockFactory.AddDockable(LeftPane, subTreeViewModel); what's the proper way to do it? @wieslawsoltes |
Beta Was this translation helpful? Give feedback.
-
I think I figured it out after some hours of reverse engineering. Unfortunately I did not find any documentation at all. I will add a minimal demo app that uses Important points are:
Note: This Example uses a |
Beta Was this translation helpful? Give feedback.
-
I am having problems creating a dock/tool using code.
Using AXAML, I was able to create a given tool using:
But using C# code, the tab is created but no content is displayed:
SubTreeView.axaml.cs
SubTreeView.axaml.cs
`SubTreeViewModel.cs
Beta Was this translation helpful? Give feedback.
All reactions