Recommendations on a WPF Docking Library

前端 未结 8 1588
离开以前
离开以前 2020-12-02 09:18

We are implementing an application that needs dockable windows, similar to Visual Studio 2005/2008, but with multiple \"docking sites\", unlike VS\'s single one. Does anyone

8条回答
  •  [愿得一人]
    2020-12-02 10:00

    SandDock is alright. We used it for a POC phase of a project. I found some pretty bad bugs in their layout saving mechanism. It generated XML, but then couldn't load this XML back; it threw an exception! I actually read through all the generated XML and had to write code to modify the XML slightly after each time it was generated. It did not seem like it was a well thought out design; I was hoping for common WPF base types like

    Infragistics is a bit better but buggy. In fact, if you try running it on a machine that only has .Net 3.0 and no .Net 3.5, it doesn't work correctly. Have an outstanding dev issue with Infragistics and I don't know if they've made any progress on a fix for this. I've also had it crash a few times when floating a window and dragging it around (suspect this has to do with the .Net 3.0/3.5 issue above). I've found styling this control to be pretty un-intuitive.

提交回复
热议问题