wpf-devexpress-dot-xpf-dot-core-dot-theme-dot-office2019colorfulname.md
The name of the Office2019Colorful theme.
Namespace : DevExpress.Xpf.Core
Assembly : DevExpress.Xpf.Core.v25.2.dll
NuGet Package : DevExpress.Wpf.Core
public const string Office2019ColorfulName = "Office2019Colorful"
Public Const Office2019ColorfulName As String = "Office2019Colorful"
| 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
public App() {
ApplicationThemeHelper.ApplicationThemeName = Theme.Office2019ColorfulName;
}
wpf-spreadsheet-control-create-a-data-entry-form/CS/WpfDataEntryFormSample/App.xaml.cs#L15
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
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
protected override void OnStartup(StartupEventArgs e) {
ApplicationThemeHelper.ApplicationThemeName = Theme.Office2019ColorfulName;
base.OnStartup(e);
wpf-spreadsheet-spell-check-cell-text/CS/App.xaml.cs#L17
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
Public Sub New()
ApplicationThemeHelper.ApplicationThemeName = Theme.Office2019ColorfulName
End Sub
wpf-spreadsheet-control-create-a-data-entry-form/VB/WpfDataEntryFormSample/Application.xaml.vb#L17
Protected Overrides Sub OnStartup(ByVal e As StartupEventArgs)
DevExpress.Xpf.Core.ApplicationThemeHelper.ApplicationThemeName = DevExpress.Xpf.Core.Theme.Office2019ColorfulName
MyBase.OnStartup(e)
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
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
Protected Overrides Sub OnStartup(ByVal e As StartupEventArgs)
DevExpress.Xpf.Core.ApplicationThemeHelper.ApplicationThemeName = DevExpress.Xpf.Core.Theme.Office2019ColorfulName
MyBase.OnStartup(e)
See Also