Avalonia跨平台入门第十四篇之ListBox折叠列表

Posted dotNET跨平台

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Avalonia跨平台入门第十四篇之ListBox折叠列表相关的知识,希望对你有一定的参考价值。

在前面分享的几篇中咱已经玩耍了PopupListBox多选Grid动态分RadioButton模板控件的拖放效果控件的置顶和置底控件的锁定自定义Window样式动画效果Expander控件;今天趁着空闲时间接着去摸索基于ListBox的折叠列表的效果,最终实现的效果如下图:


先来看看布局吧:

前台的布局代码:

外面ListBox的子项模板:

<ListBox.ItemTemplate>
    <DataTemplate>
        <!--这里绑定ListBoxItem的IsSelected可以控制只展开一项-->
        <!--去掉绑定的话,可以展开多项-->
        <!--IsExpanded="Binding $parent[ListBoxItem].IsSelected"-->
        <Expander Header="Binding Name" Cores:AttachedDependencyHelper.ExpanderHeaderImg="Binding HeaderImg" 
                Foreground="White" Width="Binding $parent[ListBox].Width"
                HorizontalContentAlignment="Stretch" VerticalContentAlignment="Stretch">
            <ListBox Items="Binding ChildData" Width="260"
                 ItemTemplate="StaticResource LisBoxItemTemplate">
                <ListBox.Styles>
                    <Style Selector="ListBoxItem /template/ Border#OutBorder">
                        <Setter Property="Background" Value="#1C3466"/>
                     </Style>
                    <!--鼠标pointerover的颜色-->
                    <Style Selector="ListBoxItem:pointerover /template/ Border#OutBorder">
                        <Setter Property="Background" Value="#cc075c9f"/>
                     </Style>
                    <!--鼠标selected的颜色-->
                    <Style Selector="ListBoxItem:selected /template/ Border#OutBorder">
                        <Setter Property="Background" Value="#075C9F"/>
                     </Style>
                </ListBox.Styles>
            </ListBox>
        </Expander>
    </DataTemplate>
</ListBox.ItemTemplate>

里面的ListBox的子项模板:

<DataTemplate x:Key="LisBoxItemTemplate">
    <Grid Width="Binding $parent[ListBox].Width">
        <WrapPanel Orientation="Horizontal" Margin="30,0,0,0" VerticalAlignment="Center">
            <Image Source="Binding ManagerType,Converter=StaticResource ManagerTypeEnumToImageConverter" Height="20" Stretch="Uniform"/>
            <TextBlock Margin="10,0,0,0" HorizontalAlignment="Center" Text="Binding Path=Name,StringFormat=我是0" Foreground="White"/>
        </WrapPanel>
        <Button Classes="RemoveItemButton" Tag="Binding" IsVisible="Binding $parent[ListBoxItem].IsSelected" CommandParameter="Binding ."
        Command="Binding DataContext.RemoveItemCommand,RelativeSource=RelativeSource AncestorType=x:Type ListBox AncestorLevel=2"/>
    </Grid>
</DataTemplate>

最终简单的效果先这样吧;回头可以基于玩耍一下联系人的效果;以后有时间的话,可以再去摸索一下更复杂的效果;编程不息、Bug不止、无Bug、无生活;改bug的冷静、编码的激情、完成后的喜悦、挖坑的激动 、填坑的兴奋;这也许就是屌丝程序员的乐趣吧;今天就到这里吧;希望自己有动力一步一步坚持下去;生命不息,代码不止;大家抽空可以看看今天分享的效果,有好的意见和想法,可以在留言板随意留言;我看到后会第一时间回复大家,多谢大家的一直默默的关注和支持!如果觉得不错,那就伸出您的小手点个赞并关注一下,多谢您的支持!

以上是关于Avalonia跨平台入门第十四篇之ListBox折叠列表的主要内容,如果未能解决你的问题,请参考以下文章

Avalonia跨平台入门第四篇之Popup在uos下问题

Avalonia跨平台入门第八篇之控件的拖放

Avalonia跨平台入门第二十三篇之滚动字幕

Avalonia跨平台入门第二十二篇之人脸检测

Avalonia跨平台入门第二十篇之语音播放问题

Avalonia跨平台入门第二十一篇之玩耍CEF