2024-01-12 00:39:10 +08:00
2023-07-24 17:51:47 +08:00
2023-07-02 13:46:35 +08:00
2024-01-11 22:00:17 +08:00
2024-01-12 00:39:10 +08:00
2023-02-01 01:55:23 +08:00
2023-01-31 00:39:53 +08:00
2023-07-02 13:46:35 +08:00
2023-07-19 21:40:18 +08:00

Ursa

drawing

Ursa is a UI library for building cross-platform UIs with Avalonia UI.

How to use

  1. Ursa

Add nuget package:

dotnet add package Irihi.Ursa --version 0.1.0-beta20230702

You can now use Ursa controls in your Avalonia Application.

<Window
    ...
    xmlns:u="https://irihi.tech/ursa"
    ...>
    <StackPanel Margin="20">
        <u:ButtonGroup Classes="Solid Warning">
            <Button Content="Hello" />
            <Button Content="World" />
        </u:ButtonGroup>
        <u:TagInput />
    </StackPanel>
</Window>

Demo

  1. Ursa.Themes.Semi

To make Ursa controls show up in your application, you need to reference to a theme package designed for Ursa. Ursa.Themes.Semi is a theme package for Ursa inspired by Semi Design. You can add it to your project by following steps.

Add nuget package:

dotnet add package Semi.Avalonia --version 11.0.0-rc1
dotnet add package Irihi.Ursa.Themes.Semi --version 0.1.0-beta20230702

Include Styles in application:

    <Application.Styles>
        <StyleInclude Source="avares://Semi.Avalonia/Themes/Index.axaml" />
        <StyleInclude Source="avares://Ursa.Themes.Semi/Index.axaml" />
    </Application.Styles>
Description
No description provided
Readme MIT 23 MiB
Languages
C# 100%