Back to Devexpress

Theme.Office2007Category Field

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

latest3.0 KB
Original Source

Theme.Office2007Category Field

The name of the category of Office 2007 themes.

Namespace : DevExpress.Xpf.Core

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

NuGet Package : DevExpress.Wpf.Core

Declaration

csharp
public const string Office2007Category = "Office 2007 Themes"
vb
Public Const Office2007Category As String = "Office 2007 Themes"

Field Value

Type
String

The following code snippets (auto-collected from DevExpress Examples) contain references to the Office2007Category 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-mvvm-behaviors-hamburger-based-theme-selector/CS/HamburgerSubMenuThemeSelectorBehavior/App.xaml.cs#L14

csharp
switch (theme.Category) {
    case Theme.Office2007Category:
        theme.ShowInThemeSelector = false;

wpf-mvvm-behaviors-gallery-based-theme-selector/CS/GalleryThemeSelectorBehavior/App.xaml.cs#L18

csharp
{
    case Theme.Office2007Category:
        theme.ShowInThemeSelector = false;

wpf-mvvm-behaviors-hamburger-based-theme-selector/VB/HamburgerSubMenuThemeSelectorBehavior/App.xaml.vb#L16

vb
Select Case theme.Category
    Case Theme.Office2007Category
        theme.ShowInThemeSelector = False

wpf-mvvm-behaviors-gallery-based-theme-selector/VB/GalleryThemeSelectorBehavior/App.xaml.vb#L16

vb
Select Case theme.Category
    Case Theme.Office2007Category
        theme.ShowInThemeSelector = False

See Also

Theme Class

Theme Members

DevExpress.Xpf.Core Namespace