mirror of
https://gitcode.com/gh_mirrors/se/Semi.Avalonia
synced 2026-03-03 00:00:55 +08:00
15 lines
352 B
C#
15 lines
352 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using Avalonia.Controls;
|
|
|
|
namespace Semi.Avalonia.Demo.Pages;
|
|
|
|
public partial class ListBoxDemo : UserControl
|
|
{
|
|
public ListBoxDemo()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
public IEnumerable Items { get; set; } = new List<string> { "Ding", "Otter", "Husky", "Mr.17", "Cass", };
|
|
} |