Splitters are special windows/controls that are used to split another window/frame to subwindows. Usually splitters can be dragged so the subwindows are resized.
Questions tagged [splitter]
245 questions
3
votes
2 answers
Custom paint Splitter control in C# WinForms
I am trying to paint the split line that appears when you drag a splitter control:
As you can see from this image, the default splitter is a checkerboard.
...this doesn't work:
public partial class MockForm : Form
{
public MockForm()
{
…

Matthew Layton
- 39,871
- 52
- 185
- 313
3
votes
1 answer
Delphi: splitter resizes only 2 panes which it splits
I have 4 panels, in a row, with 3 splitters in between. 1st/2nd/3rd panes: align=alLeft, 4th pane: align=alClient.
[1] | [2] | [3] | [4]
Now user wants, that
splitter 1 resizes only panels 1 and 2 (don't touch others; now it moves panels…

Prog1020
- 4,530
- 8
- 31
- 65
3
votes
2 answers
Splitting a already split pane (MFC)
In my MFC program I am using a splitter to create two panes. I now want to split one of these panes in half again and put in another view, can someone talk me through how to do it or point me in the direction of some code?
I would prefer to code it…

Konrad
- 39,751
- 32
- 78
- 114
3
votes
3 answers
How to place SplitContainerControl's splitter at a percentual position?
Is there a way to place SplitContainerControl's splitter at a percentual position of the control size, that keeps even if its container is resized? Or, on the other hand, set the size of the panels to a percentual value?

Guillermo Gutiérrez
- 17,273
- 17
- 89
- 116
3
votes
1 answer
Splitter Controls for VB 6.0
I need a good splitter control for my project. Does any one have one?

karthik
- 91
- 1
- 7
2
votes
1 answer
wxPython: SplitterWindow and SetMaxSize for one Subwindow
I am quiet new to wxPython, so I hope there is nothing basic I am overlooking:
I want to use a SplitterWindow to split up my Frame's content in two resizable subwindows (A and B), but I want one of the windows (B) to have a MaxSize…

38leinaD
- 93
- 1
- 8
2
votes
1 answer
How to create a splitter in ATL/WTL?
I want to place the elements of my (resizable) dialog in one of two panes.
How do I create a splitter for the panes, using WTL?
I found CSplitterImpl and CSplitterWindowImpl, but I can't figure out how to use them with my dialogs.

user541686
- 205,094
- 128
- 528
- 886
2
votes
1 answer
Make PrimeVue Splitter to have dynamic two-way panel size
I am using PrimeVue Splitter with Vue3 and composition API. I want to make the size of each panel dynamic , so when I click a button they return to their original size.
This is what I have so far

codebot
- 517
- 8
- 29
- 55
2
votes
1 answer
How in Delphi 10.4.2 show vertical separator lines in a TGridPanel that has a group of TRadioButton in its columns
I have a TGridPanel that has 6 columns (as an example). In each column there is a TRadiobutton. All five TradioButtons from a group. In this way the five TRadioButtons work as expected, and at the same time only one of them can be checked.
To add…

Zonouzi
- 81
- 9
2
votes
0 answers
Media or Video splitter Gem
Does anybody knows the list of Media Splitter.So that I can tryout. I only know the FFmpeg Media Splitter.
Actually I need a gem and I am using Ruby on Rails.

Deepak Lamichhane
- 19,076
- 4
- 30
- 42
2
votes
1 answer
Pyqt QSplitter not visualizing correctly
I'm trying to incorporate a QSplitter. The code works perfectly from a functionality standpoint, but the QSplitter itself doesn't appear correctly under the default PyQt style... possibly because it is itself embedded within a vertical splitter.…

ees
- 327
- 1
- 17
2
votes
1 answer
Messages Lost after Spring Integration Splitter. Data not reaching Aggregator randomly
I am trying to process the output of a SQL query in parallel. below given is my code. I have sysout in Aggregator. But I randomly see the sysout in Aggregator is not getting printed. Also, the release method in aggregator is also not printing…

Karthik Mannepalli
- 63
- 1
- 9
2
votes
2 answers
Is splitter control available in UWP?
I would like to use splitter control in UWP project. But I can't find the splitter control in UWP platform.
Is there any other splitter control in UWP?

JKoning
- 285
- 1
- 2
- 8
2
votes
2 answers
Parse a string with key=value pair in a map?
I have below String which is in the format of key1=value1, key2=value2 which I need to load it in a map (Map) as key=value so I need to split on comma , and then load cossn as key and 0 its value.
String payload = "cossn=0,…

user1950349
- 4,738
- 19
- 67
- 119
2
votes
2 answers
Spring Integration Java DSL flow Splitter/Aggregator delete file after processing all lines
Using Spring Integration Java DSL, I have constructed a flow where I'm processing files synchronously with a FileSplitter. I've been able to use the setDeleteFiles flag on a AbstractFilePayloadTransformer to delete the file after converting each…

Chris Phillipson
- 795
- 1
- 15
- 34