Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/satial-interfaces/CalendarControl

CalendarControl is a calendar control (week view) for Avalonia. See and run the sample app to get to know it.
https://github.com/satial-interfaces/CalendarControl

Last synced: 26 days ago
JSON representation

CalendarControl is a calendar control (week view) for Avalonia. See and run the sample app to get to know it.

Awesome Lists containing this project

README

        

# CalendarControl for Avalonia

This is a calendar control (week view) for Avalonia. See and run the sample app to get to know it.

![CalendarControl screenshot](/Images/CalendarControl.png)

## How to use

First add the package to your project. Use NuGet to get it: https://www.nuget.org/packages/CalendarControl.Avalonia/

Or use this command in the Package Manager console to install the package manually
```
Install-Package CalendarControl.Avalonia
```

Second add a style to your App.axaml (from the sample app)

````Xml




````

Or use the default one

````Xml




````

Then add the control to your Window.axaml (minimum)

````Xml



````

It's even better to specify the item template with binding to your view model

````Xml









````