Mini Kabibi Habibi

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

Imports Microsoft.VisualBasic
Imports System
Imports System.Collections.Generic
Imports SchedulerDemo
Imports DevExpress.XtraScheduler

Namespace SchedulerDemo
	Partial Public Class WeekView
		Inherits SchedulerDemoModule
		Public Sub New()
			InitializeComponent()
			InitializeScheduler()
			scheduler.WeekView.AppointmentDisplayOptions.StartTimeVisibility = AppointmentTimeVisibility.Always
			scheduler.WeekView.AppointmentDisplayOptions.EndTimeVisibility = AppointmentTimeVisibility.Always
		End Sub
	End Class

	Public Class FirstDayOfWeekList
		Inherits List(Of DevExpress.XtraScheduler.FirstDayOfWeek)
	End Class

	Public Class AppointmentTimeDisplayTypeList
		Inherits List(Of AppointmentTimeDisplayType)
	End Class

	Public Class AppointmentTimeVisibilityList
		Inherits List(Of AppointmentTimeVisibility)
	End Class
End Namespace