All Projects → mameolan → Avalonia.extendedtoolkit

mameolan / Avalonia.extendedtoolkit

Licence: mit
Extended Controls for Avalonia UI

Programming Languages

csharp
926 projects

Labels

Projects that are alternatives of or similar to Avalonia.extendedtoolkit

Wf wcf samples
Windows Communication Foundation (WCF) and Windows Workflow Foundation (WF) Samples
Stars: ✭ 17 (-75.71%)
Mutual labels:  xaml
Modernwpfcommunitytoolkit
The ModernWpf Community Toolkit is a collection of helper functions and custom controls for the ModernWpf library.
Stars: ✭ 35 (-50%)
Mutual labels:  xaml
Orc.filterbuilder
WPF UI to help users build collection filters
Stars: ✭ 56 (-20%)
Mutual labels:  xaml
Adonis Ui
Lightweight UI toolkit for WPF applications offering classic but enhanced windows visuals
Stars: ✭ 878 (+1154.29%)
Mutual labels:  xaml
Adaptivecards
A new way for developers to exchange card content in a common and consistent way.
Stars: ✭ 950 (+1257.14%)
Mutual labels:  xaml
Gank.uwp
http://gank.io 第三方客户端UWP版
Stars: ✭ 41 (-41.43%)
Mutual labels:  xaml
Reactiveproperty
ReactiveProperty provides MVVM and asynchronous support features under Reactive Extensions. Target framework is .NET Standard 2.0.
Stars: ✭ 603 (+761.43%)
Mutual labels:  xaml
Inthehand.forms
Extras for Xamarin Forms including MediaElement
Stars: ✭ 68 (-2.86%)
Mutual labels:  xaml
Mahapps.metro
A framework that allows developers to cobble together a better UI for their own WPF applications with minimal effort.
Stars: ✭ 8,023 (+11361.43%)
Mutual labels:  xaml
Ui For Uwp
This repo contains the source code for Telerik UI for Universal Windows Platform (UWP), which includes 20+ UI controls for developers building UWP applications.
Stars: ✭ 1,077 (+1438.57%)
Mutual labels:  xaml
Xaml Controls Gallery
This app demonstrates the controls available in WinUI and the Fluent Design System.
Stars: ✭ 882 (+1160%)
Mutual labels:  xaml
Fluentwpf
Fluent Design System for WPF.
Stars: ✭ 912 (+1202.86%)
Mutual labels:  xaml
Uwp App Launcher Mobile
[Open Source] It's like the iOS and Android Home Screens but for Windows 10 (Phones).
Stars: ✭ 47 (-32.86%)
Mutual labels:  xaml
Formswpflive
Live XAML development for Xamarin Forms Apps using WPF Backend.
Stars: ✭ 14 (-80%)
Mutual labels:  xaml
Avalonstudio
Cross platform IDE and Shell
Stars: ✭ 1,132 (+1517.14%)
Mutual labels:  xaml
Brainpowerapp
A visual memory training game, a mobile game made with Xamarin for both Android and IOS .
Stars: ✭ 17 (-75.71%)
Mutual labels:  xaml
Master Detail navigation xamarin.forms
My "custom" Master-Detail Page Navigation menu implementation on Xamarin.Forms platform. This master page have two areas one for ListView with menu items and one for the other information such as user profile info, image and other info.
Stars: ✭ 39 (-44.29%)
Mutual labels:  xaml
Mahapps.metro.iconpacks
Awesome icon packs for WPF and UWP in one library
Stars: ✭ 1,157 (+1552.86%)
Mutual labels:  xaml
Files
A modern file manager that pushes the boundaries of the platform.
Stars: ✭ 15,198 (+21611.43%)
Mutual labels:  xaml
Uwp Styles Library
Just a collection of some cool styles that you can just add on to your next UWP project!
Stars: ✭ 52 (-25.71%)
Mutual labels:  xaml

Avalonia.ExtendedToolkit

alt text

Avalonia.ExtendedTool wants to port some controls from the WPF to Avalonia.

Most styles / ideas where taken from:

etc.

Contributor are welcome.

Nugets


Usage


Please have a look at the example app or in the wiki on how to use the controls.

Solution Structure


  • Avalonia.Controlz: library which can be merge to the Avalonia Project
  • Avalonia.ExampleApp: Example Application for the Extended Toolkit
  • Avalonia.ExtendedToolkit: library which have special controls and styles

How to add the styles to your project


<Application.Styles>
	<StyleInclude Source="avares://Avalonia.Themes.Default/DefaultTheme.xaml"/>
	<StyleInclude Source="resm:Avalonia.Controls.DataGrid.Themes.Default.xaml?assembly=Avalonia.Controls.DataGrid" />
	<StyleInclude Source="avares://Avalonia.ExtendedToolkit/Styles/Generic.xaml"/>
</Application.Styles>

Set Color in App.xaml Styles like this i.e.:

<StyleInclude Source="avares://Avalonia.ExtendedToolkit/Styles/Themes/Dark.Blue.xaml"/>

or use the ThemeManager (App.xaml.cs):

public override void OnFrameworkInitializationCompleted()
{
   if (ApplicationLifetime is IClassicDesktopStyleApplicationLifetime desktop)
   {
        var window=new MainWindow();
		ThemeManager.Instance.EnableTheme(window);
        desktop.MainWindow = window;
   }

   base.OnFrameworkInitializationCompleted();
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].