Questions tagged [dockpanel-suite]

The Weifenluo DockPanel Suite is an open source library that extends the .NET WinForms API to support forms that can be interactively docked by a user to customise their application UI layout.

The Weifenluo DockPanel Suite is an open source library (under the MIT license) that extends the .NET WinForms API to support forms that can be interactively docked by a user to customise their application UI layout. It supports the look and feel of Visual Studio .NET and is widely used by other open source projects.

For more information visit the project website at http://dockpanelsuite.com

76 questions
0
votes
1 answer

WeifenLuo.WinFormsUI.Docking Tab click events

I want to detect when user clicks the Tab itself and the blank Tabs area in WeifenLuo.WinFormsUI.Docking component. To be specific: Detect mouse wheel click on any Tab (marked with green) Detect right mouse click on empty space (marked with…
Slappy
  • 5,250
  • 1
  • 23
  • 29
0
votes
0 answers

How can i close button on each tab in the dockpanel

enter image description here I want the close button next to the text on each tab like Image I used DockPanel. How can i add close button next to the text on each tab?
2nan
  • 11
  • 5
0
votes
0 answers

Dock Panel Hangs

I am using WeifenLuo.WinFormsUI.Docking.dll(3.0.6 version ,Release Date-24/10/2018) in my project fro docking windows. When I got frequently live data in my docking child window and if want to undock that window from parent window my application…
0
votes
2 answers

DockPanel disable close button

I am using DockPanel suite. I need to disable the Close button of the DockPanel. I found that: dockPanel1.CloseButtonVisible = false; will remove close button. But in my dockpanel there is no property called CloseButtonVisible. So how do I remove…
Vicky
  • 1,657
  • 6
  • 23
  • 33
0
votes
1 answer

Responsive Design UI with DockPanel Suite

I have design 1 winform to look like the picture. But I want the highlighted yellow part to be dockable with dockpanel suite reference. Is that do-able or any other suggestion of better design? Right now the treeview is on the dockpanel and the red…
HNA
  • 107
  • 2
  • 14
0
votes
1 answer

DockPanel Suite: Dynamically set FloatWindow's MaximizeBox and MinimizeBox

I'm farily new to DockPanel Suite. I have created a custom FloatWindow and IFloatWindowFactory like this: public class MapFloatWindowFactory : DockPanelExtender.IFloatWindowFactory { public FloatWindow CreateFloatWindow(DockPanel dockPanel,…
Jonas Kohl
  • 1,018
  • 1
  • 11
  • 28
0
votes
0 answers

WeifenLuo(Dock Panel Suite) Dock to multiple dockpanels

I use WeifenLuo DockPanel in my project. Now I have a main window (let's call it MAINWINDOW), and another window (let's call it SECONDWINDOW), both of them are holding a DockPanel (dockPanel1 and dockPanel2). I want to implement a feature: if I move…
0
votes
0 answers

Get DockPanel suite tab order

Is there some collection or some other property, where it is possible to get the current order of tabs in the DockPanel Suite? I open several tabs in some order by default and then, after some action, I want to get the current tabs order. The user…
Artholl
  • 1,291
  • 1
  • 19
  • 38
0
votes
1 answer

dockPanelSuit not showing positions to dock a form

I am writing a simple windows application which contains the main form and other 4 forms. All 4 forms are docked to the main form using dockPanelSuit, that works fine with functionalities like docking, undocking to the main form. the same…
Nandish
  • 1
  • 2
0
votes
0 answers

DockPanelSuite, How to get the value from a TextBox on a Panel

I'm new with C# and making my first application with the dockpanel-suite. The main goal is to edit multiple text-files. My question is how to get the value of a textbox on the active panel/document? I have a standard Form (frmView) for viewing and…
Harm
  • 1
0
votes
0 answers

DockPanel Suite Menu and Tool strip Theme not applied when Switching among Themes

I am using DockPanel Suite Version 2.12.0. When I move over DARK/LIGHT/BLUE, Menu and Tool strip theme applied correctly at first time, from second time onward light theme applied to Menu and Tool strip. I have also checked with DockSample same…
0
votes
0 answers

DockPanel Suite (C#) - How to access variables and Custom methods of Tool Window from Child Form

This look like silly and similar to previous questions but it's not. Project details: I am using Dockpanel Suite MDIParent - Form1 testapp MDIChild - Form2 child window ToolWindow - Form3 toolwindow / logs Snapshot of Test App I want to…
Media Hub
  • 1
  • 1
  • 4
0
votes
1 answer

Call a Method in a DockPanel Document

I have a dictionary list of forms which are Documents within DockPanelSuite (Windows Forms) When a button on the main form is pressed all the document's "Contents" contained in the first control (ScintillaNet Editor instance) of the Document Form…
Dave Gordon
  • 1,815
  • 4
  • 30
  • 52
0
votes
1 answer

Multiple Dock Panels using DockPanelSuite and C#

Currently I am struggling having an Dockpanel inside a C# User Control Library because handling the MDI state is troublesome or not even possible... Thus my question: is it even possible to have a MDI container inside another MDI container using…
maxik
  • 1,053
  • 13
  • 34
0
votes
1 answer

Updated icon image won't show in document tab

I just found DockPanel Suite and am learning to use it. I downloaded v2.9 and am using it with C# in VS2013. I created a simple Windows Forms MDI app. It has one type of child form which is a simple form with only a rich text box control in it. I…