| layout | post |
|---|---|
| title | Touch Support in Windows Forms Scheduler control | Syncfusion® |
| description | Learn about Touch Support in Syncfusion® Windows Forms Scheduler (Schedule) control and more details. |
| platform | WindowsForms |
| control | Schedule |
| documentation | ug |
The WinForms Scheduler Control provides the swipe scrolling and zooming touch support like Outlook calendar. The touch support for schedule control can be enabled by setting the EnableTouchMode property to true. This will enable the grid to support the swiping, panning, and zooming. Default value of the EnableTouchMode property is false.
{% tabs %} {% highlight c# %} //Enable the touch mode scheduleControl1.EnableTouchMode = true; {% endhighlight %} {% highlight vb %} 'Enable the touch mode scheduleControl1.EnableTouchMode = True {% endhighlight %} {% endtabs %}
The ScheduleControl allows you to perform the vertical swipe scrolling in Day, WorkWeek, and custom views. The previous or next value can be viewed by horizontal swipe scrolling in left to right or right to left direction like MS Outlook.
The ScheduleControl view can be changed when zooming like MS Outlook calendar.

