Ecosyste.ms: Awesome

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

https://github.com/AvaloniaUI/Avalonia.Samples

Avalonia.Samples aims to provide some minimal samples focusing on a particular issue at a time. This should help getting new users started.
https://github.com/AvaloniaUI/Avalonia.Samples

avalonia avaloniaui c-sharp cross-platform dotnet front-end-development hacktoberfest sample-code samples tutorials

Last synced: 25 days ago
JSON representation

Avalonia.Samples aims to provide some minimal samples focusing on a particular issue at a time. This should help getting new users started.

Lists

README

        

= Avalonia image:_docs/_Assets/Logo.svg[link=https://www.avaloniaui.net] Samples
:toc:
:toc-placement!:
:tip-caption: :bulb:
:note-caption: :information_source:
:important-caption: :heavy_exclamation_mark:
:caution-caption: :fire:
:warning-caption: :warning:

Welcome to **Avalonia.Samples**. This is a collection of minimal samples, which should make it easy for everyone to get started with https://www.avaloniaui.net[Avalonia^]. Each sample is focusing on only one aspect of Avalonia.

toc::[]

[#get-in-touch]
== πŸ—― Get in touch with us

If you have feedback, questions or suggestions feel free to contact us via:

image:https://raw.githubusercontent.com/Patrolavia/telegram-badge/master/chat.svg[link=https://t.me/Avalonia]
image:https://badges.gitter.im/Join%20Chat.svg[link=https://gitter.im/AvaloniaUI/Avalonia?utm_campaign=pr-badge&utm_content=badge&utm_medium=badge&utm_source=badge]
image:https://img.shields.io/badge/discord-join%20chat-46BC99[link=https://aka.ms/dotnet-discord]

Or file a new bug-report or feature request in the https://github.com/AvaloniaUI/Avalonia.Samples/issues[`Issues`]-section.

== πŸ“‚ Organization of the Samples

Every sample can be found in its own sub-folder and can run without any reference to another sample. Nevertheless we have a `*.sln`-File which has all projects in one solution, if you are looking for a complete collection of samples.

You can find the list of samples <>. The samples are structured in different categories and difficulties. For better search results, each sample is also tagged with some **buzz-words**.

In every sample folder you will find a `README`-File, which describes the sample in detail and, if applicable, has links to further information and documentation.

=== 🐣 Difficulties

Each sample is tagged with it's difficulty. The degree of difficulty describes how much base-knowledge a user should have.

[cols="1,1,2"]
|===
| πŸ”˜ | Difficulty | Degree of knowledge

| 🐣 | Beginner
| A Beginner must not have any knowledge of Avalonia. Nevertheless some basic knowledge of `C#`, `X(A)ML` and your IDE is mandatory

| πŸ₯ | Easy
| Some very basic knowledge of Avalonia is needed

| πŸ” | Normal
| The user is somewhat experienced with Avalonia

| πŸ‰ | Hard
| These samples are focusing on non-standard tasks, which most users will not need to know.

|===

[#samples]
== ✍️ Samples

////
Copy the below for a new entry in the sample-tables and replace the text in << >> with your content.

| link:src/Avalonia.Samples/<>/<>[<>]
| <>
| <>
////

=== πŸ’‘ MVVM-Samples

[cols="25h,25,50"]
|===
| Sample | Difficulty | Buzz-Words

| link:src/Avalonia.Samples/MVVM/BasicMvvmSample[Basic MVVM Sample]
| 🐣 Beginner
| MVVM, Model-View-ViewModel, ReactiveUI, INotifyPropertyChanged, XAML, Binding

| link:src/Avalonia.Samples/MVVM/CommandSample[Commands Sample]
| 🐣 Beginner
| Command, ICommand, CommandParameter, MVVM, ReactiveCommand, async-await

| link:src/Avalonia.Samples/MVVM/ValueConversionSample[ValueConverter Sample]
| πŸ₯ Easy
| Converter, Binding, MultiBinding, IValueConverter, IMultiValueConverter, MVVM, FuncValueConverter

| link:src/Avalonia.Samples/MVVM/ValidationSample[Validation Sample]
| πŸ₯ Easy
| MVVM, Data-Validation, Exception, Error, Error-Message, Binding

|===

=== βœ’οΈ Drawing-Samples

[cols="25h,25,50"]
|===
| Sample | Difficulty | Buzz-Words

| link:src/Avalonia.Samples/Drawing/BattleCity[BattleCity Game Sample]
| πŸ” Normal
| Game, Canvas, Game Loop, MVVM

| link:src/Avalonia.Samples/Drawing/RectPainter[Rect Painter Sample]
| πŸ” Normal
| Graphics, MVVM

|===

=== 🎞️ DataTemplate-Samples

[cols="25h,25,50"]
|===
| Sample | Difficulty | Buzz-Words

| link:src/Avalonia.Samples/DataTemplates/BasicDataTemplateSample[Basic DataTemplate Sample]
| πŸ” Normal
| DataTemplate, ToString, StringFormat, MVVM, ItemTemplate, ContentTemplate

| link:src/Avalonia.Samples/DataTemplates/FuncDataTemplateSample[FuncDataTemplate Sample]
| πŸ” Normal
| FuncDataTemplate, DataTemplate, C#, Binding from code

| link:src/Avalonia.Samples/DataTemplates/IDataTemplateSample[Implementing IDataTemplate Sample]
| πŸ” Normal
| IDataTemplate, DataTemplate, DataTemplateSelector

|===

=== πŸ—ΊοΈ Routing / Navigation-Samples

[cols="25h,25,50"]
|===
| Sample | Difficulty | Buzz-Words

| link:src\Avalonia.Samples\Routing\BasicViewLocatorSample[Basic ViewLocator Sample]
| πŸ” Normal
| ViewLocator, Routing, Wizard, Navigation, Page, MVVM

|===

=== πŸ› οΈ Custom Controls Samples

[cols="25h,25,50"]
|===
| Sample | Difficulty | Buzz-Words

| link:src\Avalonia.Samples\CustomControls\RatingControlSample[RatingControl Sample]
| πŸ” Normal
| Control, TemplatedControl, custom Control, reusable Control, AvaloniaProperty, StyledProperty, DirectProperty, ReadonlyProperty, Style, ControlTheme

|===

=== ⚑ View Interaction Samples

[cols="25h,25,50"]
|===
| Sample | Difficulty | Buzz-Words

| link:src\Avalonia.Samples\ViewInteraction\MvvmDialogSample[Mvvm Dialog Sample]
| πŸ” Normal
| MVVM, Dialog, FileDialogs, TopLevel, Clipboard

| link:src\Avalonia.Samples\ViewInteraction\DialogManagerSample[Dialog Manager Sample]
| πŸ” Normal
| MVVM, Dialog, FileDialogs, TopLevel, Clipboard, DialogManager, CommunityToolkit.Mvvm

|===

[#_️_automated_ui_testing]
=== πŸ§ͺ️ Automated UI Testing

[cols="25h,25,50"]
|===
| Sample | Difficulty | Buzz-Words

| link:src\Avalonia.Samples\Testing\TestableApp.Headless.XUnit[Testing with Headless XUnit]
| πŸ” Normal
| XUnit, Headless, Automation, UI Testing
| link:src\Avalonia.Samples\Testing\TestableApp.Headless.NUnit[Testing with Headless NUnit]
| πŸ” Normal
| NUnit, Headless, Automation, UI Testing
| link:src\Avalonia.Samples\Testing\TestableApp.Appium[Testing with Appium]
| πŸ‰ Hard
| XUnit, Appium, WinAppDriver, Automation, UI Testing

|===

[complete-apps]
=== πŸ§‘β€πŸ’» Complete Apps
[cols="25h,25,50"]
|===
| Sample | Difficulty | Buzz-Words

| link:src\Avalonia.Samples\CompleteApps\SimpleToDoList[Simple ToDo-List]
| πŸ₯ Easy
| ToDo-List, Complete App, MVVM, CommunityToolkit.MVVM, Source Generator, Styles, Commands

|===

== πŸͺ› Contribution

Is Anything missing? Have you found an error? Have you found an outdated sample? Or do you have a great idea?

Fantastic! Your contribution is welcome.

NOTE: Before you start, make sure you have read the Code of Conduct

=== Code of Conduct
This project has adopted the code of conduct defined by the Contributor Covenant to clarify expected behavior in our community. For more information see the https://dotnetfoundation.org/code-of-conduct[Contributor Covenant Code of Conduct]

=== Issues and Feature Requests
If you file a new issue or feature request please fill in the templates available. If you found an issue in an existing sample, please link the sample and if possible the point us to what is wrong.

=== Pull Requests

NOTE: Pull requests may be discussed and probably not every pull request will be merged in the end. If you are not sure, please <> first. Anyway, every contribution is welcome.

==== Fixing an existing sample

If you find that in an existing sample, that something is unclear or missing, you can update this sample and file a pull request. Also spelling mistakes or wrong wording can be changed and a pull request can be send.

IMPORTANT: If you change the difficulty or the buzz-words, remember to also update the main page.

==== Adding a new sample

. Add a new Project to the Solution `src β–Ί Avalonia.Samples β–Ί Avalonia.Samples.sln`
. In the root directory of the new sample add a `ReadMe`-file. We highly suggest to use the template which you can find here:
.. link:/_docs/AsciiDoc-Template/[AsciiDoc-Template]: If you want to provide richer content, we suggest to use the https://asciidoc.org[ascii-doc]-template.
.. link:/_docs/Markdown-Template/[Markdown-Template]: If you don't like option a), you can use also the Markdown-template.

// Comment this in for next years hacktober fest
////
=== πŸŽƒ Hacktoberfest 2023

We are participating in https://hacktoberfest.com[[Hacktoberfest 2023\]]. If you submit a valid pull request within this month, we will add the `HACKTOBERFEST-ACCEPTED` label to your PR. Read more about it and how to participate https://hacktoberfest.com/participation/[[here\]]

Valid PRs are::
- Adding a new sample
- Fixing an existing sample
- Improve an existing sample
- Do an overall spell-check (Not just changing a random word!)

WARNING: Spam or invalid PRs will be marked as invalid. If you are unsure if your PR will be accepted for Hacktoberfest, you can ask us here or in the image:https://raw.githubusercontent.com/Patrolavia/telegram-badge/master/chat.svg[link=https://t.me/Avalonia].

πŸŽƒ Happy coding πŸŽƒ
////