Skip to content
This repository was archived by the owner on Sep 21, 2025. It is now read-only.

Commit 8e57c20

Browse files
authored
Update Readme.md
1 parent eaff531 commit 8e57c20

File tree

1 file changed

+13
-10
lines changed

1 file changed

+13
-10
lines changed

Readme.md

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,22 @@
33
[![](https://img.shields.io/badge/Open_in_DevExpress_Support_Center-FF7200?style=flat-square&logo=DevExpress&logoColor=white)](https://supportcenter.devexpress.com/ticket/details/E2775)
44
[![](https://img.shields.io/badge/📖_How_to_use_DevExpress_Examples-e9f6fc?style=flat-square)](https://docs.devexpress.com/GeneralInformation/403183)
55
<!-- default badges end -->
6-
<!-- default file list -->
7-
*Files to look at*:
86

9-
* [MyRegistrator.cs](./CS/WindowsApplication1/Custom style/MyRegistrator.cs) (VB: [MyRegistrator.vb](./VB/WindowsApplication1/Custom style/MyRegistrator.vb))
10-
* [MySkinTabPainter.cs](./CS/WindowsApplication1/Custom style/MySkinTabPainter.cs) (VB: [MySkinTabPainter.vb](./VB/WindowsApplication1/Custom style/MySkinTabPainter.vb))
11-
* [Form1.cs](./CS/WindowsApplication1/Form1.cs) (VB: [Form1.vb](./VB/WindowsApplication1/Form1.vb))
12-
* [Program.cs](./CS/WindowsApplication1/Program.cs) (VB: [Program.vb](./VB/WindowsApplication1/Program.vb))
13-
<!-- default file list end -->
14-
# How to create a custom style for the XtraTabControl?
7+
# WinForms Tab Control - Create a custom style
158

9+
This example demonstrates how to create a custom style to paint the WinForms Tab Control as needed:
1610

17-
<p>This example demonstrates how to create a custom style for the XtraTabControl. If you use your custom style, you can create your own painters, and so change the default TabControl's painting mechanism.</p>
11+
```csharp
12+
public Form1() {
13+
InitializeComponent();
14+
PaintStyleCollection.DefaultPaintStyles.Add(new MyRegistrator());
15+
xtraTabControl1.PaintStyleName = "MyStyle";
16+
}
17+
```
1818

19-
<br/>
2019

20+
## Files to Review
2121

22+
* [MyRegistrator.cs](./CS/WindowsApplication1/Custom%20style/MyRegistrator.cs) (VB: [MyRegistrator.vb](./VB/WindowsApplication1/Custom%20style/MyRegistrator.vb))
23+
* [MySkinTabPainter.cs](./CS/WindowsApplication1/Custom%20style/MySkinTabPainter.cs) (VB: [MySkinTabPainter.vb](./VB/WindowsApplication1/Custom%20style/MySkinTabPainter.vb))
24+
* [Form1.cs](./CS/WindowsApplication1/Form1.cs) (VB: [Form1.vb](./VB/WindowsApplication1/Form1.vb))

0 commit comments

Comments
 (0)