0

我正在尝试使用以下代码将数据绑定到 WPF 中的嵌套 StackPanels - 无济于事。谁能发现我哪里出错了?

    <Page.Resources>
    <DataTemplate x:Key="MinuteTimeSlotTemplate">
        <TextBlock Text="{Binding Path=TourName}" Background="Blue" />
    </DataTemplate>
    <DataTemplate x:Key="HourlyTimeSlotTemplate">
        <StackPanel>
            <Border Height="120" BorderThickness="0,0,0,1" BorderBrush="#DDD" x:Name="parentRow">
                <Grid>
                    <Grid.ColumnDefinitions>
                        <ColumnDefinition Width="123"/>
                        <ColumnDefinition/>
                    </Grid.ColumnDefinitions>
                    <StackPanel Orientation="Vertical" VerticalAlignment="Center" Margin="0,0,10,0" MouseUp="StackPanel_MouseUp_1">
                        <TextBlock Foreground="#4585B9" FontWeight="Bold" FontFamily="Trebuchet MS" FontSize="20" HorizontalAlignment="Right">
                            <Run Text="{Binding Path=Time}"/></TextBlock>
                        <TextBlock FontFamily="Trebuchet MS" Foreground="#808080" HorizontalAlignment="Right"><Run Text="View Bookings"/></TextBlock>
                    </StackPanel>
                    <StackPanel Orientation="Vertical" Grid.Column="1" Margin="10,0,10,0" x:Name="stk">
                        <ItemsControl ItemTemplate="{StaticResource MinuteTimeSlotTemplate}" ItemsSource="{Binding Path=HourlySlots}" >
                            <ItemsControl.ItemsPanel>
                                <ItemsPanelTemplate>
                                    <VirtualizingStackPanel Orientation="Vertical"/>
                                </ItemsPanelTemplate>
                            </ItemsControl.ItemsPanel>
                        </ItemsControl>
                    </StackPanel>
                </Grid>
            </Border>
        </StackPanel>
    </DataTemplate>
</Page.Resources>
<helpers:AnimatedScrollViewer  x:Name="scrlHours" Grid.Column="1" PanningMode="Both" PanningDeceleration="5" PanningRatio="2">
    <ItemsControl x:Name="TimeSlotList" ItemTemplate="{StaticResource HourlyTimeSlotTemplate}" >
        <ItemsControl.ItemsPanel>
            <ItemsPanelTemplate>
                <VirtualizingStackPanel Orientation="Vertical"/>
            </ItemsPanelTemplate>
        </ItemsControl.ItemsPanel>
    </ItemsControl>
</helpers:AnimatedScrollViewer>

我在代码中设置了父 StackPanels ItemsSource:

public HourlyCalendar() {
        InitializeComponent();
        TimeSlotList.ItemsSource = new Models.TimeSlots(DateTime.Today).HourlySlots;
    }

这是我的模型:

    public class TimeSlots {

    public TimeSlots(DateTime? day) {
        this.HourlySlots = DataManager.GetCalendarDayTimeSlots(day);
    }

    public IEnumerable<TimeSlot> HourlySlots { get; set; }

}

父 StackPanel 按预期绑定,但我不知道如何绑定子 StackPanel ...

4

1 回答 1

1

事实证明这很简单:

    <helpers:AnimatedScrollViewer x:Name="scrlHours" Grid.Column="1" PanningMode="Both" PanningDeceleration="5" PanningRatio="2">
    <ItemsControl x:Name="TimeSlots">
        <ItemsControl.ItemTemplate>
            <DataTemplate>
               <Border Height="120" BorderThickness="0,0,0,1" BorderBrush="#DDD" x:Name="parentRow">
                    <StackPanel Orientation="Horizontal">
                        <StackPanel Orientation="Vertical" VerticalAlignment="Center" Margin="0,0,10,0" Width="123" MouseUp="StackPanel_MouseUp_1"> <!--Height="{Binding Height, ElementName=parentRow}"-->
                            <TextBlock Foreground="#4585B9" FontWeight="Bold" FontFamily="Trebuchet MS" FontSize="20" HorizontalAlignment="Right">
                            <Run Text="{Binding Path=Time}"/></TextBlock>
                            <TextBlock FontFamily="Trebuchet MS" Foreground="#808080" HorizontalAlignment="Right"><Run Text="View Bookings"/></TextBlock>
                        </StackPanel>
                        <ListView ItemsSource="{Binding Bookings}" ScrollViewer.CanContentScroll="False">
                            <ListBox.ItemTemplate>
                                <DataTemplate>
                                    <TextBlock Text="{Binding TourName}"></TextBlock>
                                </DataTemplate>
                            </ListBox.ItemTemplate>
                        </ListView>
                    </StackPanel>
                </Border>
            </DataTemplate>
        </ItemsControl.ItemTemplate>
    </ItemsControl>
</helpers:AnimatedScrollViewer>
于 2012-12-16T17:19:16.500 回答