• WPF : ListBox的几种Template属性


    属性名 属性的类名 功能 示例
    Template ControlTemplate 定义控件自身的外观.

    其子元素的布局可以自定义,也可以由ItemsPresenter定义.

    <Style TargetType="ListBox">
    <Setter Property="Template">
    <Setter.Value>
    <ControlTemplate TargetType="ListBox">
    <Border>
    <ScrollViewer>
    <StackPanel IsItemsHost="True"/>
    </ScrollViewer>
    </Border>
    </ControlTemplate>

    </Setter.Value>
    </Setter>
    </Style>

    IsItemsHost=true表示子元素将显示在此容器中.此处StackPanel也可以用<ItemsPresenter/>代替.
    ItemsPanel ItemsPanelTemplate 定义子元素的布局, 其内容为StackPanel, Grid, WrapPanel, DockPanel等布局容器.

    ItemsPresenter会创建该属性指定的布局容器
    <Style TargetType="ListBox">
    <Setter Property="ItemsPanel">
    <Setter.Value>
    <ItemsPanelTemplate>
    <StackPanel Orientation="Horizontal"  VerticalAlignment="Center" HorizontalAlignment="Center"/> </ItemsPanelTemplate>

    </Setter.Value>
    </Setter>
    </Style>
    ItemTemplate DataTemplate 定义每个子元素的外观.

    这个值会拷贝给ListBoxItem的ContentTemplate属性

    <ListBox>
    <ListBox.ItemTemplate>
    <DataTemplate>
    <StackPanel>
    <TextBlock Text="{Binding Path=TaskName}" /> <TextBlock Text="{Binding Path=Description}"/> <TextBlock Text="{Binding Path=Priority}"/> </StackPanel>
    </DataTemplate>

    </ListBox.ItemTemplate> </ListBox>

     WPF_Template

    一起使用:

    <Style TargetType="{x:Type ListBox}">

    <!-- 定义每个子元素的外观, 显示每个子元素的数据 -->
    <Setter Property="ItemTemplate">
    <Setter.Value>
    <DataTemplate>
    <StackPanel>
    <TextBlock Text="{Binding Path=TaskName}" />
    <TextBlock Text="{Binding Path=Description}"/>
    <TextBlock Text="{Binding Path=Priority}"/> </StackPanel>
    </DataTemplate>

    </Setter.Value>
    </Setter>

    <!-- 定义子元素的布局容器, 比如:横向,纵向 -->
    <Setter Property="ItemsPanel">
    <Setter.Value>
    <ItemsPanelTemplate>
    <StackPanel Orientation="Horizontal" VerticalAlignment="Center" HorizontalAlignment="Center"/>
    </ItemsPanelTemplate>
    </Setter.Value>
    </Setter>

    <!-- 定义ListBox自身外观, 比如: 圆角边框-->
    <Setter Property="Template">
    <Setter.Value>
    <ControlTemplate TargetType="ListBox">
    <Border CornerRadius="5" Background="{TemplateBinding ListBox.Background}">
    <ScrollViewer HorizontalScrollBarVisibility="Auto">
    <ItemsPresenter/>
    </ScrollViewer>
    </Border>
    </ControlTemplate>

    </Setter.Value>
    </Setter>

    </Style>

  • 相关阅读:
    D365FO Debug找不到w3cp进程
    D365FO 10.0PU32 开发环境 Data Management导出失败
    一张图看懂项目管理
    用户体验为什么重要?如何提升产品的用户体验?(写给产品小白)
    敏捷考证?你应该知道的敏捷体系认证(最全名单)
    漫画:禅道程序员的一天
    敏捷开发管理--任务分解经验之谈
    漫画:优秀程序员的必备特质有哪些?
    漫画:女生/男生告白攻略
    漫画:程序员脱单秘籍
  • 原文地址:https://www.cnblogs.com/mrfangzheng/p/1418326.html
Copyright © 2020-2023  润新知