Skip to content
#

avaloniaui

avalonia logo

Avalonia supports Windows, Linux and OSX with experimental mobile support for Android and iOS. Avalonia uses a XAML dialect that should feel immediately familiar to anyone coming from WPF, UWP and Xamarin Forms.

Here are 61 public repositories matching this topic...

nesterenko-kv
nesterenko-kv commented Oct 5, 2017

Here few useful aliases and mixins:

alias SolidColorBrush(key, color) 
{
  SolidColorBrush Key=$key
  {
    Color: $color
  }
}

alias Thickness(key, left, top, right, bottom) 
{
  Thickness Key=$key
  {
    Left: $left
    Top: $top
    Right: $right
    Bottom: $bottom
  }
}

mixin Size(width=none, height=none) for FrameworkElement
{
  Width: $width
  Height: $height

Created by Steven Kirk

Released 2016

Latest release about 1 month ago

Repository
avaloniaui/avalonia
Website
avaloniaui.net

Related Topics

wpf xamarin
You can’t perform that action at this time.