Avalonia.Win32
by: Avalonia Team
- 6 total downloads
- Latest version: 11.2.6
Avalonia is a cross-platform UI framework for .NET providing a flexible styling system and supporting a wide range of Operating Systems such as Windows, Linux, macOS and with experimental support for Android, iOS and WebAssembly.
Avalonia.X11
by: Avalonia Team
- 4 total downloads
- Latest version: 11.2.6
Avalonia is a cross-platform UI framework for .NET providing a flexible styling system and supporting a wide range of Operating Systems such as Windows, Linux, macOS and with experimental support for Android, iOS and WebAssembly.
Avalonia.Xaml.Behaviors
by: Wiesław Šoltés
- 6 total downloads
- Latest version: 11.3.0.6
Easily add interactivity to your Avalonia apps using XAML Behaviors. Behaviors encapsulate reusable functionalities for elements that can be easily added to your XAML without the need for more imperative code.
Avalonia.Xaml.Interactions
by: Wiesław Šoltés
- 6 total downloads
- Latest version: 11.2.0.14
Easily add interactivity to your Avalonia apps using XAML Behaviors. Behaviors encapsulate reusable functionalities for elements that can be easily added to your XAML without the need for more imperative code.
Avalonia.Xaml.Interactions.Custom
by: Wiesław Šoltés
- 6 total downloads
- Latest version: 11.2.0.14
Easily add interactivity to your Avalonia apps using XAML Behaviors. Behaviors encapsulate reusable functionalities for elements that can be easily added to your XAML without the need for more imperative code.
Avalonia.Xaml.Interactions.DragAndDrop
by: Wiesław Šoltés
- 4 total downloads
- Latest version: 11.2.0.14
Easily add interactivity to your Avalonia apps using XAML Behaviors. Behaviors encapsulate reusable functionalities for elements that can be easily added to your XAML without the need for more imperative code.
Avalonia.Xaml.Interactions.Draggable
by: Wiesław Šoltés
- 5 total downloads
- Latest version: 11.2.0.14
Easily add interactivity to your Avalonia apps using XAML Behaviors. Behaviors encapsulate reusable functionalities for elements that can be easily added to your XAML without the need for more imperative code.
Avalonia.Xaml.Interactions.Events
by: Wiesław Šoltés
- 5 total downloads
- Latest version: 11.2.0.14
Easily add interactivity to your Avalonia apps using XAML Behaviors. Behaviors encapsulate reusable functionalities for elements that can be easily added to your XAML without the need for more imperative code.
Avalonia.Xaml.Interactions.Responsive
by: Wiesław Šoltés
- 5 total downloads
- Latest version: 11.2.0.14
Easily add interactivity to your Avalonia apps using XAML Behaviors. Behaviors encapsulate reusable functionalities for elements that can be easily added to your XAML without the need for more imperative code.
Avalonia.Xaml.Interactivity
by: Wiesław Šoltés
- 4 total downloads
- Latest version: 11.2.0.14
Easily add interactivity to your Avalonia apps using XAML Behaviors. Behaviors encapsulate reusable functionalities for elements that can be easily added to your XAML without the need for more imperative code.
Azure.Core
by: Microsoft
- 1 total downloads
- Latest version: 1.40.0
This is the implementation of the Azure Client Pipeline
Azure.Identity
by: Microsoft
- 1 total downloads
- Latest version: 1.11.4
This is the implementation of the Azure SDK Client Library for Azure Identity
BDInfo
by: UniqProject, cinemasquid, stanionascu, jellyfin
- 1 total downloads
- Latest version: 0.7.6.2
Library for analysis of the Bluray disc and folder stuctures.
BenchmarkDotNet.Annotations
by: .NET Foundation and contributors
- 1 total downloads
- Latest version: 0.14.0
Powerful .NET library for benchmarking
Blazored.LocalStorage
by: Chris Sainty
- 1 total downloads
- Latest version: 4.3.0
A library to provide access to local storage in Blazor applications
BlurHashSharp
by: Bond_009
- 1 total downloads
- Latest version: 1.2.0
BlurHash encoder for working with raw bitmaps in memory.
BlurHashSharp.SkiaSharp
by: Bond_009
- 1 total downloads
- Latest version: 1.2.0
BlurHash encoder for use with the SkiaSharp image library.
BuildWebCompiler2022
by: Mads Kristensen, Jason Moore
- 2 total downloads
- Latest version: 1.14.15
Compiles LESS, Sass, JSX and CoffeeScript files
Bwl.Framework
by: Alexandra Sovenko, Artem Drobanov, Pavel Cherkas, Ilya Kuryshev
- 2 total downloads
- Latest version: 2025.1.10-173800-e7ea4f
Bwl.Framework - a set of .NET libraries that provide common functionality that is used in many projects. It is a part of Bwl libraries set.
Bwl.Framework allows you to easily add configuration and logging to your project, as well as to use a set of common classes and methods.
Among additional features - CryptoTools with AES support; JSON serialization; string tools; and more.
Base Bwl.Framework library is a .NET Standard 2.0 library. To have access to Windows-specific features, use Bwl.Framework.Windows library. To use cross-platform GUI and features - use Bwl.Framework.Avalonia library.
Bwl.Framework.Avalonia
by: Alexandra Sovenko, Artem Drobanov, Pavel Cherkas, Ilya Kuryshev
- 0 total downloads
- Latest version: 2025.1.10-173800-e7ea4f
Bwl.Framework.Avalonia - .NET library that provides common functionality for Avalonia-based projects. It is a part of Bwl libraries set.
This library provides realization of cross-platform AppBase (configuration, logging, AutoUI, etc.).
To use this library - create new Avalonia project and add reference to Bwl.Framework.Avalonia.
To create AutoUI application - in App.axaml.cs you would need to create new AppBase, add description of UI elements in AppBase.AutoUI and then call AutoUIForm.Create(AppBase) to create Window with UI elements.
To use FormBase or FormAppBase:
- Create new Avalonia Window;
- Add 'xmlns:local="clr-namespace:Bwl.Framework.Avalonia;assembly=Bwl.Framework.Avalonia"' in your Window tag;
- Inside your Window tag, add '<local:FormAppBase x:Name="FormAppBase">';
- Inside FormAppBase tag, add '<local:FormAppBase.FormContent>' and describe your UI elements;
- In axaml.cs file call 'FormAppBase.Init(this);' in constructor to initialize FormBase;
- To access AppBase properties and methods, use 'FormAppBase.AppBase'.