Hi,
How to Repositioning the floated toolwindow without doubleclicking the titlebar of that toolwindow.
Consider y sample application have 1 toolwindow that does not have titlebar and still i can easily dock and float the toolwindow by dragging from any position of the toolwindow using the code below that is used in the cs file of the toolwindow.
protectedoverridevoid OnGotMouseCapture(MouseEventArgse)
{
DragMove();
}
Once the toolwindow is floated by the user that does not have titlebar and then user wants to reposition the toolwindow by doubleclicking the any position of the toolwindow.
Same functionality is working only on the titlebar of the toolwindow.