Code Monkey home page Code Monkey logo

my-avalonia-template's Introduction

MyAvaloniaTemplate

Template for Avalonia-based applications, based on Avalonia templates, with added functionalities:

Must Do After Generating

After generating a new repository from this template, you may want to:

  • Change solution and project name from MyAvaloniaTemplate to new names
  • Refactor MyAvaloniaTemplate namespaces and root namespace
  • Customize splash screen visuals in Views/SplashWindow
  • Adapt settings properties in Models/SettingsModel.cs
  • Adapt sample settings properties for design-time settings and sample configuration JSON in CreateSample() method in Models/SettingsModels.cs

Active Window Tracking

Avoid Window, Use AppWindow Instead

The App class has ActiveWindow property which gets updated automatically when a AppWindow is Activated.

Getting Active Window

Useful for setting dialog owner, accessing TopLevel, cast Application.Current into App and access App.ActiveWindow. For example:

if (Application.Current is App app)
{
    if (app.ActiveWindow is Window window)
    {
        var filePickerResult = await window.StorageProvider.OpenFilePickerAsync(new FilePickerOpenOptions()
        {
            FileTypeFilter = new FilePickerFileType[]
            {
                new("CSV Files")
                {
                    Patterns = new[]
                    {
                        "*.csv"
                    }
                }
            }
        });
    }
}

Background Services

To create a background service:

  • Create a class that implements IBackgroundService interface that comes with this template.
  • Register the background service in ConfigureServices in App.axaml.cs, TODOs are reserved for service registration.
services.AddBackgroundService<MyBackgroundService>(); // register types directly
services.AddBackgroundService<IMyBackgroundService, MyBackgroundServiceImpl>(); // register as interface
  • Background services are created and ran when IocExtensions.CreateBackgroundServices() is called;

Background Service Tips

Unlike Generic Host BackgroundService, IBackgroundService does not have StartAsync. I suggest using Task.Run() or TaskFactory for long-running tasks, or DispatcherTimer if your background service somehow interacts with Avalonia user interface.

my-avalonia-template's People

Contributors

seikosantana avatar

Stargazers

 avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.