Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/satial-interfaces/CalendarControl
- Owner: satial-interfaces
- License: mit
- Created: 2022-02-19T11:39:16.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-03-14T09:25:07.000Z (9 months ago)
- Last Synced: 2024-03-14T10:37:38.712Z (9 months ago)
- Language: C#
- Homepage:
- Size: 1.41 MB
- Stars: 80
- Watchers: 2
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-avalonia - CalendarControl - A calendar control (week view) for Avalonia. (Libraries & Extensions / Controls)
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
````