Mini Kabibi Habibi

Current Path : C:/Users/Public/Documents/DXperience 13.1 Demos/WPF/CS/SchedulerDemo.Wpf/Modules/
Upload File :
Current File : C:/Users/Public/Documents/DXperience 13.1 Demos/WPF/CS/SchedulerDemo.Wpf/Modules/WeekView.xaml.cs

using System;
using System.Collections.Generic;
using SchedulerDemo;
using DevExpress.XtraScheduler;

namespace SchedulerDemo {
    public partial class WeekView : SchedulerDemoModule {
        public WeekView() {
            InitializeComponent();
            InitializeScheduler();
            scheduler.WeekView.AppointmentDisplayOptions.StartTimeVisibility = AppointmentTimeVisibility.Always;
            scheduler.WeekView.AppointmentDisplayOptions.EndTimeVisibility = AppointmentTimeVisibility.Always;
        }
    }

    public class FirstDayOfWeekList : List<DevExpress.XtraScheduler.FirstDayOfWeek> {
    }

    public class AppointmentTimeDisplayTypeList : List<AppointmentTimeDisplayType> {
    }

    public class AppointmentTimeVisibilityList : List<AppointmentTimeVisibility> {
    }
}