Back to Devexpress

ViewBase.Description Property

wpf-devexpress-dot-xpf-dot-scheduling-dot-viewbase-a77ada78.md

latest2.8 KB
Original Source

ViewBase.Description Property

Gets or sets a description for the current View ‘s bar item. This is a dependency property.

Namespace : DevExpress.Xpf.Scheduling

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

NuGet Package : DevExpress.Wpf.Scheduling

Declaration

csharp
public string Description { get; set; }
vb
Public Property Description As String

Property Value

TypeDescription
String

A string that specifies the View item’s description.

|

Remarks

The following properties allow you to create a custom ribbon button and a context menu item for a specific View :

This can be useful, for instance, when you have different views of the same type and want to differentiate between them in the Scheduler UI.

The following example demonstrates how to create a custom ribbon and menu item for the Month view:

xaml
<dx:ThemedWindow x:Class="WpfScheduler.MainWindow" 
    xmlns:dx="http://schemas.devexpress.com/winfx/2008/xaml/core" 
    xmlns:dxsch="http://schemas.devexpress.com/winfx/2008/xaml/scheduling"
    <!------------------->

    <dxsch:SchedulerControl x:Name="scheduler" CommandBarStyle="Ribbon" ActiveViewIndex="0">
        <dxsch:MonthView Caption="Month"
                         Description="The Multi-Week view useful for long-term plans."
                         Glyph="{dx:DXImage Image=MonthView_16x16.png}" 
                         LargeGlyph="{dx:DXImage Image=MonthView_32x32.png}"/>
    </dxsch:SchedulerControl>

The following image shows the result:

See Also

How to: Display the Integrated Ribbon for the Scheduler

Pop-Up Menus

ViewBase Class

ViewBase Members

DevExpress.Xpf.Scheduling Namespace