Back to Devexpress

XtraTabControl.PaintStyleName Property

windowsforms-devexpress-dot-xtratab-dot-xtratabcontrol-10502bf5.md

latest3.1 KB
Original Source

XtraTabControl.PaintStyleName Property

This member is not supported.

Namespace : DevExpress.XtraTab

Assembly : DevExpress.XtraEditors.v25.2.dll

NuGet Package : DevExpress.Win.Navigation

Declaration

csharp
[Browsable(false)]
[DefaultValue("Default")]
[DXCategory("Appearance")]
[EditorBrowsable(EditorBrowsableState.Never)]
public virtual string PaintStyleName { get; set; }
vb
<Browsable(False)>
<EditorBrowsable(EditorBrowsableState.Never)>
<DXCategory("Appearance")>
<DefaultValue("Default")>
Public Overridable Property PaintStyleName As String

Property Value

TypeDefaultDescription
String"Default"

The name of the paint style applied to the tab control.

|

The following code snippets (auto-collected from DevExpress Examples) contain references to the PaintStyleName property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

winforms-tabcontrol-paint-tab-header-text-vertically/CS/WindowsFormsApplication907/Form1.cs#L21

csharp
PaintStyleCollection.DefaultPaintStyles.Add(new MySkinViewInfoRegistrator());
    xtraTabControl1.PaintStyleName = "MyStyle";
}

winforms-tabcontrol-show-checkboxes-in-page-headers/CS/WindowsApplication1/Form1.cs#L23

csharp
PaintStyleCollection.DefaultPaintStyles.Add(new MyRegistrator());
xtraTabControl1.PaintStyleName = "MyStyle";
xtraTabControl1.Tag = _CheckedPages;

winforms-tabcontrol-show-checkboxes-in-page-headers/VB/WindowsApplication1/Form1.vb#L21

vb
Call PaintStyleCollection.DefaultPaintStyles.Add(New MyRegistrator())
xtraTabControl1.PaintStyleName = "MyStyle"
xtraTabControl1.Tag = _CheckedPages

See Also

XtraTabControl Class

XtraTabControl Members

DevExpress.XtraTab Namespace