Back to Devexpress

Theme.Office2013Name Field

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

latest3.1 KB
Original Source

Theme.Office2013Name Field

The Office2013 theme’s name.

Namespace : DevExpress.Xpf.Core

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

NuGet Package : DevExpress.Wpf.Core

Declaration

csharp
public const string Office2013Name = "Office2013"
vb
Public Const Office2013Name As String = "Office2013"

Field Value

Type
String

The following code snippets (auto-collected from DevExpress Examples) contain references to the Office2013Name 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-flipview-create-bind-to-data/CS/FlipViewSample/App.xaml.cs#L18

csharp
{
    ThemeManager.ApplicationThemeName = Theme.Office2013Name;
    base.OnStartup(e);

create-wpf-slide-view/CS/SlideViewSample/App.xaml.cs#L18

csharp
{
    ThemeManager.ApplicationThemeName = Theme.Office2013Name;
    base.OnStartup(e);

wpf-pageview-create-bind-to-data/CS/PageViewSample/App.xaml.cs#L18

csharp
{
    ThemeManager.ApplicationThemeName = Theme.Office2013Name;
    base.OnStartup(e);

wpf-flipview-create-bind-to-data/VB/FlipViewSample/App.xaml.vb#L13

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

wpf-pageview-create-bind-to-data/VB/PageViewSample/App.xaml.vb#L13

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

See Also

Theme Class

Theme Members

DevExpress.Xpf.Core Namespace