WIP Avalonia control that can display events on a calendar view
output.mp4
- Month View, Week View And Day View
- Custom Day Start Hour, Day End Hour and Hour Duration for week and day views
- Multiday events
- Resize and move events
See the 'sandbox' application for usage
<Window
x:Class="TestApplication.Views.MainWindow"
xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:calendar="using:AvaloniaCalendarView"
...
<ScrollViewer
HorizontalAlignment="Stretch"
VerticalAlignment="Stretch">
<calendar:CalendarView
Margin="10,0,10,0"
HorizontalAlignment="Stretch"
VerticalAlignment="Stretch"
DateEvents="{Binding Events}"
ViewDate="{Binding ViewDate}"
ViewType="{Binding ViewType}" />
</ScrollViewer>