Fixed various issues

This commit is contained in:
TheXamlGuy
2024-07-18 18:00:01 +01:00
parent 9010b3bf3c
commit e20890362e
9 changed files with 152 additions and 65 deletions
@@ -0,0 +1,10 @@
using Avalonia.Controls;
namespace Toolkit.UI.Controls.Avalonia;
public class ListViewItem :
ListBoxItem
{
protected override Type StyleKeyOverride =>
typeof(ListBoxItem);
}