Darren Schroeder

Results 2074 comments of Darren Schroeder

Thanks for responding @Wagnerp. I don't have an example I can share but perhaps we could use one of the Krypton Examples like "Standard Docking 2019". In this example, if...

@Wagnerp I'd love to. What method checks where the page is located?

I think I made a small discovery. The code above works sometimes when I dock on the edges. Sometimes it doesn't. Sometimes it works when I dock in the workspace....

I followed the example in the `Standard Docking` example located in `Krypton-NET-5.470\Source\Krypton Docking Examples\Standard Docking`. I create the Docking Pages nearly identical to this example. ```cs private KryptonPage NewDocument() {...

Yes, that would be ideal but keep in mind that it appears that pages can be docked in a nested fashion. So it could be docked at the bottom of...

That's definitely a start and probably better than what I have now. Is there a way to get the hierarchy of nested pages so I could call that on all...

Sounds right. I'll do some research. Maybe I can foreach through that collection calling your method to figure out what i need.

I'm afraid I do not. All I know is how the standard docking does it via the AddDockspace method on kryptonDockingManager. It just passes an edge. So, it may be...

I figured out why my code sometimes works and sometimes doesn't. It only works when `DockingLocation` = `Docked` (aka dockLoc below). Otherwise, when `DockingLocation` = `Workspace` and it doesn't work...