Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rolandkoenig/rkchecklist
A simple checklist application for macOS and Windows. It serves as an example for building cross-platform applications with Avalonia and C#
https://github.com/rolandkoenig/rkchecklist
avalonia checklist cross-platform csharp desktop dotnet macosx windows
Last synced: 10 days ago
JSON representation
A simple checklist application for macOS and Windows. It serves as an example for building cross-platform applications with Avalonia and C#
- Host: GitHub
- URL: https://github.com/rolandkoenig/rkchecklist
- Owner: RolandKoenig
- Created: 2023-12-30T16:22:21.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-03-24T21:18:51.000Z (8 months ago)
- Last Synced: 2024-10-11T19:40:49.889Z (about 1 month ago)
- Topics: avalonia, checklist, cross-platform, csharp, desktop, dotnet, macosx, windows
- Language: C#
- Homepage:
- Size: 2.48 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# RK CheckList
RK CheckList is simple checklist application for macOS and Windows.
It serves as an example for building cross-platform applications with Avalonia and C#.RK CheckList implements two use cases:
- Open an existing *.rkCheckList file, view it and let user check items
- Open the application and then load a *.rkCheckList file. Then view it, let user check itemsThere is no save functionality at all
*.rkCheckList files are written in yaml format like:
```yaml
title: "Sample"
items:
- text: "The first sample item"
- text: "The second sample item, which is less important"
- text: "The third sample item"
```## Screenshots
### macOS
![](assets/screenshot_macosx.png)### Windows
![](assets/screenshot_windows.png)## Project is based on...
RK CheckList is based on .NET 8 and meant to be cross-platform.The project is based on following technologies / projects:
- [Avalonia](https://github.com/AvaloniaUI/Avalonia): Cross-platform, Xaml based UI framework
- [CommunityToolkit.Mvvm](https://github.com/CommunityToolkit/dotnet): Framework for the popular Mvvm pattern
- [RolandK.AvaloniaExtensions](https://github.com/RolandKoenig/RolandK.AvaloniaExtensions): Adds features like ViewServices, DependencyInjection and some Mvvm sugar
- [RolandK.InProcessMessaging](https://github.com/RolandKoenig/RolandK.InProcessMessaging): A messenger implementation which sends / receives in process messages
- [Svg.Skia](https://github.com/wieslawsoltes/Svg.Skia): SVG rendering library with good Avalonia integration
- [xunit](https://github.com/xunit/xunit): Popular unit testing library
- [YamlDotNet](https://github.com/aaubry/YamlDotNet): A .NET library for YAML providing a serializer and deserializer