DevExpress.Wpf.Scheduling 26.1.5

Prefix Reserved
dotnet add package DevExpress.Wpf.Scheduling --version 26.1.5
                    
NuGet\Install-Package DevExpress.Wpf.Scheduling -Version 26.1.5
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="DevExpress.Wpf.Scheduling" Version="26.1.5" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="DevExpress.Wpf.Scheduling" Version="26.1.5" />
                    
Directory.Packages.props
<PackageReference Include="DevExpress.Wpf.Scheduling" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add DevExpress.Wpf.Scheduling --version 26.1.5
                    
#r "nuget: DevExpress.Wpf.Scheduling, 26.1.5"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package DevExpress.Wpf.Scheduling@26.1.5
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=DevExpress.Wpf.Scheduling&version=26.1.5
                    
Install as a Cake Addin
#tool nuget:?package=DevExpress.Wpf.Scheduling&version=26.1.5
                    
Install as a Cake Tool

DevExpress WPF: Scheduler

DevExpress.Wpf.Scheduling includes DevExpress WPF Scheduler controls: an Outlook-inspired scheduler and a companion resource tree component. The scheduler can obtain appointments and resources from view model collections and display them in seven view types. Users can create and reschedule appointments using drag-and-drop operations. Included controls adapt to the active DevExpress application theme.

dotnet add package DevExpress.Wpf.Scheduling

Included Components

  • SchedulerControl — a scheduling control that displays appointments in day, work week, week, month, timeline, agenda, and list views.
  • ResourceTreeControl — a companion control that lists scheduler resources and allows users to show or hide them.

Key Features

  • View Types: Day, work week, week, month, timeline, agenda, and list views.
  • Appointment Capabilities: Recurrence, all-day events, labels, statuses, locations, and reminders.
  • Resources: Assign appointments to resources, group the schedule by resource or by date, and share one appointment between multiple resources.
  • Interactive Editing: Users can create, move, resize, copy, and delete appointments through built-in appointment, recurrence, and reminder windows.
  • Time Regions and Time Rulers: Highlight working hours or unavailable intervals and display multiple time rulers side by side.
  • Time Zones: Display a schedule in one time zone while storing appointment times in another.
  • Filtering and On-Demand Loading: Specify appointment filters and fetch only the records the current view needs.
  • Printing: Preview and print schedules.

Examples

Example 1: Use Collection Data to Display a Weekly Schedule

<Window
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:dxsch="http://schemas.devexpress.com/winfx/2008/xaml/scheduling">

    <dxsch:SchedulerControl>
        
        <dxsch:WeekView />

        <dxsch:SchedulerControl.DataSource>
            <dxsch:DataSource AppointmentsSource="{Binding Appointments}">
                
                <dxsch:DataSource.AppointmentMappings>
                    <dxsch:AppointmentMappings Id="Id"
                                               Start="Start"
                                               End="End"
                                               AllDay="AllDay"
                                               Subject="Subject"
                                               Description="Description"
                                               RecurrenceInfo="RecurrenceInfo" />
                </dxsch:DataSource.AppointmentMappings>
            </dxsch:DataSource>
        </dxsch:SchedulerControl.DataSource>
    </dxsch:SchedulerControl>
</Window>

In this configuration, the scheduler behaves as follows:

  • Displays one week at a time
  • Draws a block for each record in the Appointments collection
  • Expands recurring appointments into individual occurrences

Example 2: Use Resources to Group Appointments

<Window
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:dxsch="http://schemas.devexpress.com/winfx/2008/xaml/scheduling">

    
    <dxsch:SchedulerControl GroupType="Resource">
        <dxsch:DayView />

        <dxsch:SchedulerControl.DataSource>
            <dxsch:DataSource AppointmentsSource="{Binding Appointments}"
                              ResourcesSource="{Binding Rooms}">
                <dxsch:DataSource.AppointmentMappings>
                    <dxsch:AppointmentMappings Id="Id"
                                               Start="Start"
                                               End="End"
                                               Subject="Subject"
                                               ResourceId="RoomId" />
                </dxsch:DataSource.AppointmentMappings>
                <dxsch:DataSource.ResourceMappings>
                    <dxsch:ResourceMappings Id="Id" Caption="Name" />
                </dxsch:DataSource.ResourceMappings>
            </dxsch:DataSource>
        </dxsch:SchedulerControl.DataSource>
    </dxsch:SchedulerControl>
</Window>

The day view shows one column per room. Each appointment appears under the room specified by the RoomId value.

Evaluation Period, Pricing Options, and Licensing Terms

Whether you own a license or want to start a 30-day evaluation period, download and register your DevExpress license key. To obtain your key, log in to the DevExpress Download Manager. Use your existing DevExpress.com account or create a new account for free. For key registration instructions, see License Key for DevExpress Products.

If you purchase a license after evaluating a product, re-register your updated DevExpress license key to remove evaluation version warnings/messages.

This package is included in the following commercial subscriptions:

See DevExpress Subscriptions & Licensing for subscription comparison tables, purchasing FAQ, and licensing information.

DevExpress.Wpf.SchedulingReporting - DevExpress WPF Scheduler report templates and print preview.

dotnet add package DevExpress.Wpf.SchedulingReporting

DevExpress.Wpf - The complete DevExpress WPF Control suite.

dotnet add package DevExpress.Wpf

Demos

NOTE: Demo links below only work if you already have DevExpress WPF Demos installed on your machine. To install demos, download and run the DevExpress Unified Installer (evaluation or licensed version). Remember to select "Demo Applications" on the product selection screen.

Documentation

Software Bill of Materials (SBOM)

To access SBOM files for DevExpress packages, please refer to the following article: Software Bill of Materials (SBOM) for DevExpress .NET assemblies/NuGet packages, JavaScript, VCL and other redistributable artifacts.

See Also: Information Security | Security - What You Need to Know

Useful Online Resources

Product Compatible and additional computed target framework versions.
.NET net8.0-windows is compatible.  net9.0-windows was computed.  net10.0-windows was computed. 
.NET Framework net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (9)

Showing the top 5 NuGet packages that depend on DevExpress.Wpf.Scheduling:

Package Downloads
DevExpress.Wpf.SchedulingReporting

Target Platform/Framework: Desktop DevExpress Product Libraries Used: WPF UI components (https://www.devexpress.com/wpf) Available in the following DevExpress Subscription(s): Universal, DXperience, WPF

DevExpress.Wpf.TypedStyles

Target Platform/Framework: Desktop DevExpress Product Libraries Used: WPF UI components (https://www.devexpress.com/wpf) Available in the following DevExpress Subscription(s): Universal, DXperience, WPF

DevExpress.Wpf.Scheduling.de

Target Platform/Framework: Desktop DevExpress Product Libraries Used: WPF UI components (https://www.devexpress.com/wpf) Available in the following DevExpress Subscription(s): Universal, DXperience, WPF

DevExpress.Wpf.Scheduling.es

Target Platform/Framework: Desktop DevExpress Product Libraries Used: WPF UI components (https://www.devexpress.com/wpf) Available in the following DevExpress Subscription(s): Universal, DXperience, WPF

DevExpress.Wpf.Scheduling.ja

Target Platform/Framework: Desktop DevExpress Product Libraries Used: WPF UI components (https://www.devexpress.com/wpf) Available in the following DevExpress Subscription(s): Universal, DXperience, WPF

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
26.1.5 143 9/18/2026
26.1.5-pre-26248 172 9/11/2026
26.1.5-pre-26241 196 9/2/2026
26.1.5-pre-26235 191 8/26/2026
26.1.5-pre-26227 203 8/18/2026
26.1.4 8,133 8/7/2026
26.1.3 11,210 6/18/2026
25.2.9 888 8/3/2026
25.2.8 4,110 6/10/2026
25.2.7 7,117 5/6/2026
25.2.6 10,704 4/7/2026
25.1.13 337 7/31/2026
25.1.12 279 6/10/2026
25.1.11 1,076 5/5/2026
25.1.10 279 4/6/2026
25.1.9 881 3/2/2026
Loading failed