Tagged Questions

0
votes
2answers
64 views

How to add a Panel to SplitContainer ?

I am using SplitContainer and it contains only 2 panels but I need 3(panels). QUESTIONS: Is it possible to add more panels to SplitContainer? if YES how? else why not? Thanks :-)
1
vote
1answer
74 views

Is there a microsoft based asp.net split container?

MSDN has the functionality I'm looking for here. Since microsoft recognizes the usefulness of a split container for the web, is this page using a publically available microsoft created, .net based …
0
votes
0answers
88 views

VS: SplitContainer control. How to implement “snapping”?

I use Visual Studio (C#) 2008 I've got a SplitContainer - each of its two panels contains one datagridview. The user can resize the panels by dragging the splitter up and down. I'd like to implement …
0
votes
3answers
176 views

Fixed Panel Height in a SplitContainer

I have a WinForm containing a bindingNavigator at the top and a splitContainer with two horisontal panels below it. The splitContainer fills the space not occupied by the bindingNavigator. I would …
0
votes
2answers
120 views

SplitContainer.Panel1 Selection to Changes SplitContainer.Panel2 selection

The MSDN documentation for the SplitContainer controls says: With the SplitContainer control, you can create complex user interfaces; often, a selection in one panel determines what objects …
1
vote
1answer
177 views

Is it possible to avoid Focus on SplitContainer?

The WinForm SplitContainer gets the focus when it's dragged or clicked, while the Splitter does not. The side-effect of this, is that dragging a SplitContainer bar fires Leave/Validate on other …