将网格视图绑定到字符串列表

本文关键字:字符串 列表 绑定 网格 视图 | 更新日期: 2023-09-27 17:55:18

是否可以将网格视图绑定到一个简单的列表?在数据项模板中,我必须指定属性名称,但在纯字符串列表的情况下,没有任何属性

<DataTemplate x:Key="AppointmentsGroupedItemTemplate">
    <StackPanel Width="Auto" Orientation="Horizontal" Height="Auto"  Background="Green">
        <TextBlock Margin="10,0,0,0" VerticalAlignment="Center"  HorizontalAlignment="Center" Width="Auto">
                  <Run Text="{**Binding Name**}" Foreground="Black" FontSize="48"/>
        </TextBlock>
    </StackPanel>
</DataTemplate>

将网格视图绑定到字符串列表

如果项目源是字符串条目,请使用以下命令:

    <DataTemplate x:Key="AppointmentsGroupedItemTemplate">
        <StackPanel Width="Auto" Orientation="Horizontal" Height="Auto"  Background="Green">
            <TextBlock Margin="10,0,0,0" VerticalAlignment="Center"  HorizontalAlignment="Center" Width="Auto">
                      <Run Text="{Binding}" Foreground="Black" FontSize="48"/>
            </TextBlock>
        </StackPanel>
    </DataTemplate>