快速开始

更新时间 2025/11/21 09:22:10

# ListBox 快速入门

基础配置条件

  • Nuget安装Avalonia
  • Nuget安装AtomUI

基础用法

AtomUI ListBox组件

axaml文件:

<atom:ListBox>
    <atom:ListBoxItem>Blue</atom:ListBoxItem>
    <atom:ListBoxItem>Green</atom:ListBoxItem>
    <atom:ListBoxItem>Red</atom:ListBoxItem>
    <atom:ListBoxItem>Yellow</atom:ListBoxItem>
</atom:ListBox>

禁用Hover样式

AtomUI ListBox组件

<atom:ListBox DisabledItemHoverEffect="True">
    <atom:ListBoxItem>Blue</atom:ListBoxItem>
    <atom:ListBoxItem>Green</atom:ListBoxItem>
    <atom:ListBoxItem>Red</atom:ListBoxItem>
    <atom:ListBoxItem>Yellow</atom:ListBoxItem>
</atom:ListBox>

禁用条目

AtomUI ListBox组件

<atom:ListBox>
    <atom:ListBoxItem>Blue</atom:ListBoxItem>
    <atom:ListBoxItem>Green</atom:ListBoxItem>
    <atom:ListBoxItem IsEnabled="False">Red</atom:ListBoxItem>
    <atom:ListBoxItem>Yellow</atom:ListBoxItem>
</atom:ListBox>