15 lines
352 B
C#
Raw Normal View History

2023-08-14 10:49:06 +08:00
using System.Collections;
using System.Collections.Generic;
2022-12-16 23:39:28 +08:00
using Avalonia.Controls;
namespace Semi.Avalonia.Demo.Pages;
2023-01-04 18:08:33 +08:00
public partial class ListBoxDemo : UserControl
2022-12-16 23:39:28 +08:00
{
2023-01-04 18:08:33 +08:00
public ListBoxDemo()
2022-12-16 23:39:28 +08:00
{
InitializeComponent();
}
2023-08-14 10:49:06 +08:00
2023-08-14 18:49:33 +08:00
public IEnumerable Items { get; set; } = new List<string> { "Ding", "Otter", "Husky", "Mr.17", "Cass", };
2022-12-16 23:39:28 +08:00
}