Hi,
I am just downloaded your last version of Docking solution.
I am dynamically create a DockingManager and 3 DockPanel.
I am use Visual Studio 2005 c# langage.
When I drag and drop a DockPanel, I would like to disabled the posibility to tabbed the document to an other DockPanel. I would like just to move the DockPanel to an other place.
Ma second question is about thr event DoubleClick.
That is a part of my code.
...
Nothing is append when I doubleclick on the Panel object.
Do you have an idea of wath is wrong ?
Thank for your support and sorry for my english.
Daniel
I am just downloaded your last version of Docking solution.
I am dynamically create a DockingManager and 3 DockPanel.
I am use Visual Studio 2005 c# langage.
When I drag and drop a DockPanel, I would like to disabled the posibility to tabbed the document to an other DockPanel. I would like just to move the DockPanel to an other place.
Ma second question is about thr event DoubleClick.
That is a part of my code.
...
| DockPanel panel_1 = new DockPanel(); |
| panel_1.CaptionVisible = true; |
| panel_1.TabStripVisible = false; |
| panel_1.CloseButtonVisible = false; |
| panel_1.HideButtonVisible = false; |
| panel_1.DropDownButtonVisible = false; |
| panel_1.VerticalScroll.Visible = false; |
| panel_1.DockState = DockState.Docked; |
| panel_1.DoubleClick += new EventHandler(Panel_DoubleClick); |
| panel_1.Text = "Test"; |
| Dock_1.SetDock(panel_1, DockPosition.Top); |
| void Panel_DoubleClick(object sender, EventArgs e) |
| { |
| label1.Text = "OKOKOK"; |
| // throw new Exception("The method or operation is not implemented."); |
| } |
Nothing is append when I doubleclick on the Panel object.
Do you have an idea of wath is wrong ?
Thank for your support and sorry for my english.
Daniel