Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问许可证需确认审计通过

syncfusion-wpf-scheduler同步融合 WPF 调度程序

Agent Skill

syncfusion-wpf-scheduler 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,053

周安装

43

GitHub Stars

2

下载量

341
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:syncfusion-wpf-scheduler(同步融合 WPF 调度程序)
来源仓库:https://github.com/syncfusion/wpf-ui-components-skills
仓库路径:skills/syncfusion-wpf-scheduler
安装命令:
npx skills add https://github.com/syncfusion/wpf-ui-components-skills --skill syncfusion-wpf-scheduler
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/syncfusion/wpf-ui-components-skills --skill syncfusion-wpf-scheduler

简介

用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合围绕仓库状态、代码变更或协作事项进行整理与分析。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装使用。
  • 建议确认权限范围和维护状态,避免触发联网或文件读写操作。
  • syncfusion-wpf-scheduler 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

WPF Scheduler (SfScheduler) Implementation

The WPF Scheduler (SfScheduler) is a comprehensive scheduling control for managing appointments through an intuitive user interface similar to Outlook calendar. It provides eight different view types, appointment management, resource grouping, drag-and-drop, recurrence patterns, timezone support, and extensive customization options.

When to Use This Skill

Use this skill when the user needs to:

  • Implement calendar or scheduler functionality in WPF applications
  • Create appointment management systems
  • Build resource scheduling applications
  • Implement meeting or event management interfaces
  • Add Outlook-like calendar views to applications
  • Schedule and manage recurring appointments
  • Handle multi-resource scheduling scenarios
  • Display appointments across different timezones
  • Implement drag-and-drop appointment rescheduling
  • Create custom appointment editors or views

Component Overview

Key Capabilities:

  • 8 Built-in Views: Day, Week, WorkWeek, Month, TimelineDay, TimelineWeek, TimelineWorkWeek, TimelineMonth
  • Appointment Management: Normal, all-day, spanned, and recurring appointments with full CRUD operations
  • Resource Scheduling: Multi-resource support with grouping by resource or date
  • Drag-and-Drop: Intuitive appointment rescheduling with visual feedback
  • Recurrence Patterns: Daily, weekly, monthly, yearly with exception handling
  • Timezone Support: Multiple timezone handling with automatic DST adjustments
  • Built-in Editor: Appointment creation and editing with validation
  • Customization: Extensive styling, templates, and appearance options
  • Accessibility: WCAG compliance with full keyboard navigation
  • Advanced Features: Load-on-demand, reminders, localization

Documentation and Navigation Guide

Getting Started

📄 Read: references/getting-started.md

  • Assembly deployment and NuGet packages
  • Creating basic scheduler application (Designer, XAML, C#)
  • Basic appointment setup and configuration
  • First day of week and theme support
  • Initial setup and quick start examples

Views and Display

📄 Read: references/scheduler-views.md

  • Available view types (Day, Week, Month, Timeline variants)
  • ViewType property and switching between views
  • View-specific features and rendering
  • Current date display

📄 Read: references/view-customization.md

  • Time interval and slot height customization
  • Working days and hours configuration
  • Special time regions (lunch breaks, holidays)
  • Selection restrictions in timeslots

Appointments and Data

📄 Read: references/appointments.md

  • ScheduleAppointment class and properties
  • Creating and managing appointments
  • ItemSource and AppointmentMapping
  • Custom business objects and data binding
  • All-day and spanned appointments
  • Recurrence appointments and patterns (RRULE)
  • Recurrence exceptions

📄 Read: references/appointment-editing.md

  • Built-in appointment editor
  • Creating, editing, and deleting appointments via UI
  • Editor customization and validation
  • Editor events and custom logic

📄 Read: references/appointment-drag-drop.md

  • Drag-and-drop functionality
  • Rescheduling appointments
  • Drag-drop restrictions and events

Resource Management

📄 Read: references/resource-grouping.md

  • Resource concepts and SchedulerResource class
  • ResourceGroupType (Resource vs Date grouping)
  • Assigning resources to appointments
  • Multi-resource scheduling
  • Resource appearance customization

Calendar and Time Management

📄 Read: references/calendar-types.md

  • Calendar systems (Gregorian, custom)
  • Calendar configuration

📄 Read: references/date-navigation.md

  • DisplayDate property
  • Programmatic navigation methods
  • Date change events

📄 Read: references/timezones.md

  • Scheduler and appointment timezones
  • Automatic timezone conversion
  • Daylight saving time handling
  • Multi-timezone scheduling scenarios

UI Customization

📄 Read: references/ui-features.md

  • Header customization and templates
  • Context menu and commands
  • Busy indicator
  • Selection modes and events

Advanced Features

📄 Read: references/advanced-features.md

  • Accessibility (WCAG, keyboard navigation)
  • Localization and culture-specific formatting
  • Load on demand for large datasets
  • Reminders and notifications
  • Migration from SfSchedule to SfScheduler

Quick Start Example

Basic Scheduler with Appointments

XAML:

<Window xmlns:syncfusion="http://schemas.syncfusion.com/wpf">
    <syncfusion:SfScheduler x:Name="Schedule"
                            ViewType="Week"
                            FirstDayOfWeek="Sunday" />
</Window>

C# Code-Behind:

using Syncfusion.UI.Xaml.Scheduler;

public MainWindow()
{
    InitializeComponent();

    // Create appointment collection
    var appointments = new ScheduleAppointmentCollection();

    // Add sample appointment
    appointments.Add(new ScheduleAppointment
    {
        StartTime = DateTime.Now.Date.AddHours(10),
        EndTime = DateTime.Now.Date.AddHours(12),
        Subject = "Client Meeting",
        Location = "Conference Room A",
        Notes = "Discuss project timeline",
        AppointmentBackground = Brushes.LightBlue
    });

    Schedule.ItemsSource = appointments;
}

Common Patterns

Pattern 1: Custom Appointments with Data Binding

// Custom business object
public class Meeting : INotifyPropertyChanged
{
    public string EventName { get; set; }
    public DateTime From { get; set; }
    public DateTime To { get; set; }
    public Brush Color { get; set; }
    public bool IsAllDay { get; set; }
}

// ViewModel
public class SchedulerViewModel
{
    public ObservableCollection<Meeting> Events { get; set; }

    public SchedulerViewModel()
    {
        Events = new ObservableCollection<Meeting>
        {
            new Meeting
            {
                EventName = "Team Standup",
                From = DateTime.Now.Date.AddHours(9),
                To = DateTime.Now.Date.AddHours(9.5),
                Color = Brushes.Green,
                IsAllDay = false
            }
        };
    }
}

XAML:

<syncfusion:SfScheduler x:Name="Schedule"
                        ViewType="Week"
                        ItemsSource="{Binding Events}">
    <syncfusion:SfScheduler.AppointmentMapping>
        <syncfusion:AppointmentMapping
            Subject="EventName"
            StartTime="From"
            EndTime="To"
            AppointmentBackground="Color"
            IsAllDay="IsAllDay" />
    </syncfusion:SfScheduler.AppointmentMapping>
</syncfusion:SfScheduler>

Pattern 2: Recurring Weekly Meeting

var recurringMeeting = new ScheduleAppointment
{
    StartTime = new DateTime(2026, 3, 24, 14, 0, 0), // Monday 2PM
    EndTime = new DateTime(2026, 3, 24, 15, 0, 0),
    Subject = "Weekly Status Meeting",
    // Recur every Monday for 12 weeks
    RecurrenceRule = "FREQ=WEEKLY;BYDAY=MO;COUNT=12",
    AppointmentBackground = Brushes.Orange
};

Pattern 3: Resource-Based Scheduling

// Add resources
Schedule.ResourceCollection = new ObservableCollection<SchedulerResource>
{
    new SchedulerResource { Id = "1001", Name = "Dr. Smith", Background = Brushes.Blue },
    new SchedulerResource { Id = "1002", Name = "Dr. Jones", Background = Brushes.Green }
};

Schedule.ResourceGroupType = ResourceGroupType.Resource;

// Assign appointment to resource
var appointment = new ScheduleAppointment
{
    StartTime = DateTime.Now.AddHours(2),
    EndTime = DateTime.Now.AddHours(3),
    Subject = "Patient Consultation",
    ResourceIdCollection = new ObservableCollection<object> { "1001" }
};

Pattern 4: Timezone-Aware Appointments

var globalMeeting = new ScheduleAppointment
{
    StartTime = new DateTime(2026, 3, 25, 10, 0, 0),
    EndTime = new DateTime(2026, 3, 25, 11, 0, 0),
    Subject = "Global Team Sync",
    StartTimeZone = "Pacific Standard Time",
    EndTimeZone = "Pacific Standard Time"
};

// Scheduler displays in local timezone automatically
Schedule.TimeZone = TimeZoneInfo.Local.Id;

Key Properties Overview

Core Properties

PropertyTypeDescriptionDefault
ViewTypeSchedulerViewTypeSets the view (Day, Week, WorkWeek, Month, TimelineDay, TimelineWeek, TimelineWorkWeek, TimelineMonth)Month
ItemsSourceIEnumerableAppointment collection to displaynull
DisplayDateDateTimeCurrently displayed dateDateTime.Now
SelectedDateDateTimeCurrently selected dateDateTime.Now
FirstDayOfWeekDayOfWeekStarting day of the weekSunday
TimeZonestringScheduler's timezone identifierLocal

View Navigation & Configuration

PropertyTypeDescriptionDefault
AllowedViewTypesSchedulerViewTypeAllowed view types for navigationAll
AllowViewNavigationboolEnable/disable view navigationtrue
ShowDatePickerButtonboolShow date picker button in headertrue

Date Range Properties

PropertyTypeDescriptionDefault
MinimumDateDateTimeMinimum date that can be displayedDateTime.MinValue
MaximumDateDateTimeMaximum date that can be displayedDateTime.MaxValue
BlackoutDatesObservableCollection<DateTime>Dates where interaction is disabled (TimelineMonth only)null

Data Binding & Mapping

PropertyTypeDescriptionDefault
AppointmentMappingAppointmentMappingMaps custom objects to ScheduleAppointment propertiesnull
ResourceMappingResourceMappingMaps custom objects to SchedulerResource propertiesnull

Header Customization

PropertyTypeDescriptionDefault
HeaderHeightdoubleHeight of the scheduler header50
HeaderDateFormatstringDate format string in header"MMMM yyyy"
HeaderTemplateDataTemplateCustom template for headernull

Resource Scheduling

PropertyTypeDescriptionDefault
ResourceCollectionObservableCollection<SchedulerResource>Collection of scheduler resourcesnull
ResourceGroupTypeResourceGroupTypeGrouping mode (Resource, Date, None)None
ResourceHeaderTemplateDataTemplateCustom template for resource headersnull
ResourceHeaderTemplateSelectorDataTemplateSelectorTemplate selector for resource headersnull

View-Specific Settings

PropertyTypeDescriptionDefault
DaysViewSettingsDaysViewSettingsSettings for Day/Week/WorkWeek viewsDefault
MonthViewSettingsMonthViewSettingsSettings for Month viewDefault
TimelineViewSettingsTimelineViewSettingsSettings for Timeline viewsDefault

Calendar & Culture

PropertyTypeDescriptionDefault
CalendarIdentifierstringCalendar system identifier (Gregorian, etc.)Gregorian

UI & Interaction

PropertyTypeDescriptionDefault
ShowBusyIndicatorboolShows loading indicator during operationsfalse
EnableToolTipboolEnable tooltips on appointmentstrue
ToolTipTemplateDataTemplateCustom template for tooltipsnull
EnableReminderboolEnable reminder functionalityfalse

Context Menus

PropertyTypeDescriptionDefault
AppointmentContextMenuContextMenuContext menu for appointmentsDefault
CellContextMenuContextMenuContext menu for cellsDefault

Drag & Drop

PropertyTypeDescriptionDefault
DragDropSettingsDragDropSettingsConfigure drag-drop behaviorDefault

Appointment Editing

PropertyTypeDescriptionDefault
AppointmentEditFlagAppointmentEditFlagControls which edit operations are allowedAll
AppointmentResizeControllerIAppointmentResizeControllerCustom resize behavior controllernull

Load On Demand

PropertyTypeDescriptionDefault
LoadOnDemandCommandICommandCommand executed when loading appointments on demandnull

Key Methods

MethodDescription
Forward()Navigate forward by one view interval
Backward()Navigate backward by one view interval
SchedulerDateToPoint(DateTime)Convert date to screen coordinates
PointToSchedulerDate(Point)Convert screen coordinates to date/time

Key Events

EventDescription
ViewChangedRaised when the view type changes
DisplayDateChangedRaised when the display date changes
SelectionChangedRaised when the selected date/appointment changes
CellTappedRaised when a cell is tapped/clicked
CellDoubleTappedRaised when a cell is double-clicked
CellLongPressedRaised when a cell is long-pressed
AppointmentTappedRaised when an appointment is tapped/clicked
AppointmentDoubleTappedRaised when an appointment is double-clicked
AppointmentDragStartingRaised when appointment drag begins (can be cancelled)
AppointmentDragOverRaised while dragging appointment over scheduler
AppointmentDropRaised when appointment is dropped
AppointmentResizeStartingRaised when appointment resize begins (can be cancelled)
AppointmentResizingRaised while appointment is being resized
AppointmentResizeCompletedRaised when appointment resize completes
AppointmentEditorOpeningRaised when appointment editor is opening (can be cancelled)
AppointmentEditorClosingRaised when appointment editor is closing (can be cancelled)
HeaderTappedRaised when header is tapped/clicked

Common Use Cases

  1. Meeting Room Scheduler - Manage conference room bookings with resource grouping
  2. Medical Appointments - Doctor scheduling with patient appointments and recurring slots
  3. Project Timeline - Track tasks, milestones, and team member assignments
  4. Event Calendar - Public event management with all-day and multi-day events
  5. Employee Shift Planning - Resource-based shift scheduling with drag-drop
  6. Class Schedule - Educational timetables with recurring sessions
  7. Service Booking - Appointment booking system with availability management

Important Considerations

  • Performance: Use LoadOnDemand for large datasets spanning multiple years
  • Data Binding: Custom objects must implement INotifyPropertyChanged for updates
  • Recurrence: Use RRULE format for recurrence patterns (standard RFC 5545)
  • Timezones: Always specify timezones for global applications
  • Resources: ResourceIdCollection must match ResourceCollection IDs
  • Views: Choose appropriate view based on use case (Day for detailed, Month for overview)

Next Steps

Start with Getting Started for installation and basic setup, then explore specific features based on your requirements using the navigation guide above.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.12%
按下载量换算123

Claude

30.77%
按下载量换算105

Cursor

19.71%
按下载量换算67

Gemini CLI

9.33%
按下载量换算32

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills