I am trying to create a sample application using MonoDevelop Docking Library. I am using the following code but its not displaying any items.
public MainWindow () : base (Gtk.WindowType.Toplevel)
{
    Build ();
    DockFrame df = new DockFrame ();
    Add (df);
    DockItem item = df.AddItem ("Document");
    item.DefaultVisible = true;
    item.DefaultLocation = "Documents/Left";
    item.DrawFrame = false;
    df.ShowAll ();
    ShowAll ();
}
Or any examples as how to use MonoDevelop Docking Library
                        
Finally got it working, (if added correct Mono Develop Libraries References)