windowsforms-devexpress-dot-xtratab-dot-xtratabcontrol-10502bf5.md
This member is not supported.
Namespace : DevExpress.XtraTab
Assembly : DevExpress.XtraEditors.v25.2.dll
NuGet Package : DevExpress.Win.Navigation
[Browsable(false)]
[DefaultValue("Default")]
[DXCategory("Appearance")]
[EditorBrowsable(EditorBrowsableState.Never)]
public virtual string PaintStyleName { get; set; }
<Browsable(False)>
<EditorBrowsable(EditorBrowsableState.Never)>
<DXCategory("Appearance")>
<DefaultValue("Default")>
Public Overridable Property PaintStyleName As String
| Type | Default | Description |
|---|---|---|
| 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
PaintStyleCollection.DefaultPaintStyles.Add(new MySkinViewInfoRegistrator());
xtraTabControl1.PaintStyleName = "MyStyle";
}
winforms-tabcontrol-show-checkboxes-in-page-headers/CS/WindowsApplication1/Form1.cs#L23
PaintStyleCollection.DefaultPaintStyles.Add(new MyRegistrator());
xtraTabControl1.PaintStyleName = "MyStyle";
xtraTabControl1.Tag = _CheckedPages;
winforms-tabcontrol-show-checkboxes-in-page-headers/VB/WindowsApplication1/Form1.vb#L21
Call PaintStyleCollection.DefaultPaintStyles.Add(New MyRegistrator())
xtraTabControl1.PaintStyleName = "MyStyle"
xtraTabControl1.Tag = _CheckedPages
See Also