wpf-devexpress-dot-xpf-dot-core-dot-theme-dot-office2007category.md
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
public const string Office2007Category = "Office 2007 Themes"
Public Const Office2007Category As String = "Office 2007 Themes"
| 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.
switch (theme.Category) {
case Theme.Office2007Category:
theme.ShowInThemeSelector = false;
wpf-mvvm-behaviors-gallery-based-theme-selector/CS/GalleryThemeSelectorBehavior/App.xaml.cs#L18
{
case Theme.Office2007Category:
theme.ShowInThemeSelector = false;
Select Case theme.Category
Case Theme.Office2007Category
theme.ShowInThemeSelector = False
wpf-mvvm-behaviors-gallery-based-theme-selector/VB/GalleryThemeSelectorBehavior/App.xaml.vb#L16
Select Case theme.Category
Case Theme.Office2007Category
theme.ShowInThemeSelector = False
See Also