首页 > Windows开发 > 详细

潜移默化学会WPF(样式篇)---ListBox的Item样式 - AYUI框架 - 博客园

时间:2019-03-01 23:34:50      阅读:268      评论:0      收藏:0      [点我收藏+]
原文:潜移默化学会WPF(样式篇)---ListBox的Item样式 - AYUI框架 - 博客园

技术分享图片
<ListBox>
        <!-- 数据 -->
        <ListBoxItem>AAAA</ListBoxItem>
        <ListBoxItem>BB</ListBoxItem>
        <ListBoxItem>CCCC</ListBoxItem>
       
        <!-- 设置ListBoxItem样式 -->
        <ListBox.ItemContainerStyle>
            <Style TargetType="ListBoxItem">
                <!-- 设置控件模板 -->
                <Setter Property="Template">
                    <Setter.Value>
                        <ControlTemplate TargetType="ListBoxItem">
                            <Border Background="{TemplateBinding Background}">
                                <ContentPresenter HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}"
                                                 VerticalAlignment="{TemplateBinding VerticalContentAlignment}"
                                                 TextBlock.Foreground="{TemplateBinding Foreground}"/>
                            </Border>
                        </ControlTemplate>
                    </Setter.Value>
                </Setter>
               
                <!-- 设置触发器 -->
                <Style.Triggers>
                    <Trigger Property="IsSelected" Value="true">
                        <Setter Property="Background" Value="Black"/>
                        <Setter Property="Foreground" Value="White"/>
                    </Trigger>
                    <Trigger Property="IsMouseOver" Value="true">
                        <Setter Property="Background" Value="LightGreen"/>
                        <Setter Property="Foreground" Value="Red"/>
                    </Trigger>
                </Style.Triggers>
            </Style>
        </ListBox.ItemContainerStyle>
    </ListBox>
技术分享图片

鼠标移上去单击  移上的颜色改变

潜移默化学会WPF(样式篇)---ListBox的Item样式 - AYUI框架 - 博客园

原文:https://www.cnblogs.com/lonelyxmas/p/10459140.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!