一天XAML的自定义时间表

时间:2015-08-04 08:32:39

标签: c# wpf xaml scheduler

我正在尝试仅为一天(单个列)创建自定义计划,其中计划的元素绑定到ObservableCollection:

public ObservableCollection<Content> ContentsToTransfer { get; set; }

现在我有这样的代码:

<Grid HorizontalAlignment="Stretch" Margin="430,52,444,0" x:Name="grid1" VerticalAlignment="Stretch" Width="Auto" OpacityMask="Black" Opacity="1" Background="#FFC2ECEC" ShowGridLines="False" >
            <Grid.Resources>
                <Style x:Key="VerticalSeparatorStyle" 
                    TargetType="{x:Type Separator}"
                    BasedOn="{StaticResource {x:Type Separator}}">
                    <Setter Property="Margin" Value="0,0,0,0"/>
                    <Setter Property="LayoutTransform">
                        <Setter.Value>
                            <TransformGroup>
                                <TransformGroup.Children>
                                    <TransformCollection>
                                        <RotateTransform Angle="90"/>
                                    </TransformCollection>
                                </TransformGroup.Children>
                            </TransformGroup>
                        </Setter.Value>
                    </Setter>
                </Style>
            </Grid.Resources>
            <Grid.RowDefinitions>
                <RowDefinition />
                <RowDefinition />
                <RowDefinition />
                <RowDefinition />
                <RowDefinition />
            </Grid.RowDefinitions>

            <Separator Grid.ColumnSpan="7" HorizontalAlignment="Stretch" Margin="0,132" x:Name="separator4" VerticalAlignment="Stretch" Width="Auto" Grid.Row="3" Grid.RowSpan="2" Background="Aqua" HorizontalContentAlignment="Stretch" Foreground="Aqua" OpacityMask="Aqua" />
            <Separator HorizontalAlignment="Stretch" Margin="0,132" x:Name="separator2" VerticalAlignment="Stretch" Width="Auto" Background="Aqua" Grid.ColumnSpan="7" Grid.Row="1" Grid.RowSpan="2" HorizontalContentAlignment="Stretch" Foreground="Aqua" />
            <Separator HorizontalAlignment="Stretch" x:Name="separator1" VerticalAlignment="Stretch" Background="Aqua" Grid.Row="2" Grid.ColumnSpan="7" Margin="0,129" Grid.RowSpan="2" HorizontalContentAlignment="Stretch" Foreground="Aqua" />
            <Separator HorizontalAlignment="Stretch" Margin="0,128" x:Name="separator3" VerticalAlignment="Stretch" Background="Aqua" Grid.ColumnSpan="7" Grid.RowSpan="2" Width="Auto" HorizontalContentAlignment="Stretch" Foreground="Aqua" />

            <Rectangle Height="Auto" HorizontalAlignment="Stretch" x:Name="rectangle1" Stroke="Aqua" VerticalAlignment="Stretch" Width="Auto" Grid.RowSpan="5" />

        </Grid>

我现在要做的是将ObservableCollection绑定到该网格,以便每次将内容添加到ObservableCollection时它也会出现在网格上。 我还想将调度程序的行为添加到它。

你可以帮帮我吗?

我做得对吗?

有没有最好的解决方案呢?

1 个答案:

答案 0 :(得分:0)

由于网格不是Grid,因此无法将集合绑定到ItemsControl。但是,您可以将集合绑定到ListBoxListViewWrapPanel等等。在这种情况下,我建议使用ItemsControl ItemsPanelStackPanel,其中包含以下内容:

<ItemsControl ItemsSource="{Binding ContentsToTransfer}">
    <ItemsControl.ItemsPanel>
        <ItemsPanelTemplate>
            <StackPanel/>
        </ItemsPanelTemplate>
    </ItemsControl.ItemsPanel>
    <ItemsControl.ItemTemplate>
        <DataTemplate>
            <!-- Your Template Here -->
        </DataTemplate>
    </ItemsControl.ItemTemplate>
</ItemsControl>

DataTemplate内,您只需要定义每个Content的外观。有关DataTemplate的详细信息,请参阅documentation

相关问题