Hello,
I am trying to keep an object in the Tag property of a tool window.
But when I dock the tool window to a position the tag property becomes null.
    
                                I am trying to keep an object in the Tag property of a tool window.
But when I dock the tool window to a position the tag property becomes null.
| ToolWindow window = new ToolWindow(); | 
| _documentTabStrip.Controls.Add(window); | 
| window.Tag = "Tag"; // Here I assign a tag | 
| _radDock.DockControl(window, DockPosition.Top, DockType.ToolWindow); | 
| // The Tag property of the docked toolwindow is null (_radDock.ToolWindows[0].Tag is null) | 
Is there any way to find the docked window in the _radDock to set its Tag.
Please help.
Burhan Eyimaya

