Monday, July 16, 2007

Docking Library Version 0.2

Hi,
I posted a new small upgrade of docking library. This version supports multiple DockManager in same window and pane ability to change title. Hope these features can help some to solve problems posted during these days.

3 comments:

Alan Christensen said...
This comment has been removed by the author.
Alan Christensen said...

I have just downloaded version 0.2 thanks.

But the title updating still doesn't seem to work the way I am using it (for document pane titles).

I made a simple change that seems to work:

In DocumentsPane.xaml.cs, AddItem(ManagedContent content)

Replace

item.Header = content;


with

Binding titleBinding = new Binding("Title");
titleBinding.Source = content;
item.SetBinding(TabItem.HeaderProperty, titleBinding);

Rick said...

Hi,

is where any particular reason why Closing docked window doesn't acctual closes it? (Window.Closing event is not called)

And how to show floating window?is there somethinkg like window.Show(Dock.Floating)?