Back to Devexpress

Theme.Office2019ColorfulName Field

wpf-devexpress-dot-xpf-dot-core-dot-theme-dot-office2019colorfulname.md

latest5.5 KB
Original Source

Theme.Office2019ColorfulName Field

The name of the Office2019Colorful theme.

Namespace : DevExpress.Xpf.Core

Assembly : DevExpress.Xpf.Core.v25.2.dll

NuGet Package : DevExpress.Wpf.Core

Declaration

csharp
public const string Office2019ColorfulName = "Office2019Colorful"
vb
Public Const Office2019ColorfulName As String = "Office2019Colorful"

Field Value

Type
String

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

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.

wpf-scheduler-load-data-on-demand/CS/Shared/App.xaml.cs#L7

csharp
public App() {
    ApplicationThemeHelper.ApplicationThemeName = Theme.Office2019ColorfulName;
}

wpf-spreadsheet-control-create-a-data-entry-form/CS/WpfDataEntryFormSample/App.xaml.cs#L15

csharp
protected override void OnStartup(StartupEventArgs e) {
    DevExpress.Xpf.Core.ApplicationThemeHelper.ApplicationThemeName = DevExpress.Xpf.Core.Theme.Office2019ColorfulName;
    base.OnStartup(e);

wpf-spreadsheet-create-custom-progress-indicator/CS/WpfSpreadsheetProgressSample/App.xaml.cs#L10

csharp
protected override void OnStartup(StartupEventArgs e) {
    ApplicationThemeHelper.ApplicationThemeName = Theme.Office2019ColorfulName;
    base.OnStartup(e);

reporting-wpf-mvvm-show-report-document-preview/CS/App.xaml.cs#L10

csharp
protected override void OnStartup(StartupEventArgs e) {
    ApplicationThemeHelper.ApplicationThemeName = Theme.Office2019ColorfulName;
    base.OnStartup(e);

wpf-spreadsheet-spell-check-cell-text/CS/App.xaml.cs#L17

csharp
DevExpress.Xpf.Core.ApplicationThemeHelper.ApplicationThemeName =
DevExpress.Xpf.Core.Theme.Office2019ColorfulName;
base.OnStartup(e);

wpf-scheduler-load-data-on-demand/VB/Shared/App.xaml.vb#L9

vb
Public Sub New()
    ApplicationThemeHelper.ApplicationThemeName = Theme.Office2019ColorfulName
End Sub

wpf-spreadsheet-control-create-a-data-entry-form/VB/WpfDataEntryFormSample/Application.xaml.vb#L17

vb
Protected Overrides Sub OnStartup(ByVal e As StartupEventArgs)
    DevExpress.Xpf.Core.ApplicationThemeHelper.ApplicationThemeName = DevExpress.Xpf.Core.Theme.Office2019ColorfulName
    MyBase.OnStartup(e)

wpf-spreadsheet-create-custom-progress-indicator/VB/WpfSpreadsheetProgressSample/Application.xaml.vb#L12

vb
Protected Overrides Sub OnStartup(ByVal e As StartupEventArgs)
    ApplicationThemeHelper.ApplicationThemeName = Theme.Office2019ColorfulName
    MyBase.OnStartup(e)

reporting-wpf-mvvm-show-report-document-preview/VB/Application.xaml.vb#L12

vb
Protected Overrides Sub OnStartup(ByVal e As StartupEventArgs)
    ApplicationThemeHelper.ApplicationThemeName = Theme.Office2019ColorfulName
    MyBase.OnStartup(e)

wpf-spreadsheet-spell-check-cell-text/VB/App.xaml.vb#L12

vb
Protected Overrides Sub OnStartup(ByVal e As StartupEventArgs)
    DevExpress.Xpf.Core.ApplicationThemeHelper.ApplicationThemeName = DevExpress.Xpf.Core.Theme.Office2019ColorfulName
    MyBase.OnStartup(e)

See Also

Theme Class

Theme Members

DevExpress.Xpf.Core Namespace