---
title: "2010 Vol 3 – Container Controls WinForms"
published_at: "2010-06-16T14:33:00+00:00"
modified_at: "2025-03-20T07:59:44+00:00"
url: "https://www.syncfusion.com/blogs/post/essential-tools-windows-vol-3-cool-preview-e28093-container-controls"
excerpt: "Customizable Splitter Back Color SplitContainerAdv is a container that consists of two panels with a splitter between them. It allows the user to simply put other controls on these panels and drag the splitter vertically or horizontally to resize. The..."
taxonomy_category:
  - "Desktop"
  - "Windows Forms"
taxonomy_post_tag:
  - "2010 Volume 3"
  - "Container Controls"
  - "What's New"
---

# 2010 Vol 3 – Container Controls WinForms

[Syncfusion Guest Blogger](https://www.syncfusion.com/blogs/author/syncfusion-guest-blogger)

![Image](https://www.syncfusion.com/blogs/wp-content/uploads/2018/08/toolswindow_preview_3b803595.png)


## Customizable Splitter Back Color

SplitContainerAdv is a container that consists of two panels with a splitter between them. It allows the user to simply put other controls on these panels and drag the splitter vertically or horizontally to resize. The user can add more SplitContainerAdv controls into any one of the panels in another SplitContainerAdv control and can change the orientation to have a customized look.

In 2010 Vol. 3, TabSplitterContainer will support customizing the background color of the splitter.

![clip_image001](https://blog.syncfusion.com/wp-content/uploads/2018/08/image-563.png "clip_image001")

**Splitter with Custom Color**

**API Added:**

SplitterBackColor (property)

**Example Use Case:**

[C#]

```
TabSplitterContainer tabSplitter = new TabSplitterContainer();
tabSplitter.SplitterBackColor = Color.Pink;
```

[VB]

```
Dim tabSplitter As New TabSplitterContainer()
tabSplitter.SplitterBackColor = Color.Pink
```
