Add another example app

This commit is contained in:
Daniel Clark
2022-11-03 12:33:23 +00:00
parent 854d393b43
commit c601957dd9
38 changed files with 1070 additions and 30 deletions
@@ -0,0 +1,17 @@
using Avalonia.Styling;
using PropertyChanged;
using System;
using TheXamlGuy.UI.Avalonia.Controls;
namespace KingPing;
[DoNotNotify]
public partial class AnalogOutputView : SettingsExpander, IStyleable
{
public AnalogOutputView()
{
InitializeComponent();
}
Type IStyleable.StyleKey => typeof(FluentAvalonia.UI.Controls.SettingsExpander);
}