wpf-devexpress-dot-xpf-dot-core-dot-theme-dot-office2013name.md
The Office2013 theme’s name.
Namespace : DevExpress.Xpf.Core
Assembly : DevExpress.Xpf.Core.v25.2.dll
NuGet Package : DevExpress.Wpf.Core
public const string Office2013Name = "Office2013"
Public Const Office2013Name As String = "Office2013"
| 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
{
ThemeManager.ApplicationThemeName = Theme.Office2013Name;
base.OnStartup(e);
create-wpf-slide-view/CS/SlideViewSample/App.xaml.cs#L18
{
ThemeManager.ApplicationThemeName = Theme.Office2013Name;
base.OnStartup(e);
wpf-pageview-create-bind-to-data/CS/PageViewSample/App.xaml.cs#L18
{
ThemeManager.ApplicationThemeName = Theme.Office2013Name;
base.OnStartup(e);
wpf-flipview-create-bind-to-data/VB/FlipViewSample/App.xaml.vb#L13
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
Protected Overrides Sub OnStartup(ByVal e As StartupEventArgs)
ThemeManager.ApplicationThemeName = Theme.Office2013Name
MyBase.OnStartup(e)
See Also