four-way splitter

  • Thread starter Thread starter Andre Loker
  • Start date Start date
A

Andre Loker

Hi!

For my current application I'm looking for a four-way-(cross) splitter
control (as often seen in 3D-editors). The .NET Splitter-class is (IIRC)
only a two-way splitter. Does anyone know such a four-way-splitter control?

Regards,
Andre Loker
 
For my current application I'm looking for a four-way-(cross) splitter
control (as often seen in 3D-editors). The .NET Splitter-class is (IIRC)
only a two-way splitter. Does anyone know such a four-way-splitter
control?

use two panels to split the area into two parts (separate panels with a
splitter) and then use another two splitters to split both panels.
Regards, Wiktor
 
Wiktor Zychla said:
control?

use two panels to split the area into two parts (separate panels with a
splitter) and then use another two splitters to split both panels.
Regards, Wiktor


I thought about that, but it has two drawbacks:

a) you don't see the "shadow" on the splitter on the other side when you
drag
the splitter
b) I'd like to be able to drag both vertically and horzontally at once when
I grab at the crossing point

Nevertheless, thanks for your answer

Regards,
Andre Loker
 
Andre Loker said:
I thought about that, but it has two drawbacks:

a) you don't see the "shadow" on the splitter on the other side when you
drag

You can probably simulate this by linking the opposing splitter in code.
the splitter
b) I'd like to be able to drag both vertically and horzontally at once when
I grab at the crossing point
In this case, you will probably have to write your own control. Shouldn't be
impossible...hmm.
 
Back
Top