0

我试图更改 dataTemplate 中的列表项外观,但在更改选定项外观时遇到问题。我发现了这个问题:Change WPF DataTemplate for ListBox item if selected

我试图创建与答案类似的代码:

<DataTemplate x:Key="NoteTemplate">
        <Border Margin="5" BorderThickness="1" BorderBrush="Transparent" Background="#F3EBC2" CornerRadius="4">
            <Grid Margin="3" Width="395" MaxHeight="40">
                <Grid.RowDefinitions>
                    <RowDefinition />
                    <RowDefinition/>                        
                </Grid.RowDefinitions>
                <Grid Row="0" >
                    <Grid.ColumnDefinitions>
                        <ColumnDefinition/>
                        <ColumnDefinition/>
                    </Grid.ColumnDefinitions>
                    <TextBlock Grid.Column="0" FontSize="15" FontFamily="Consolas" FontWeight="Bold" Text="{Binding Path=tytul}"/>
                    <TextBlock Grid.Column="1" FontSize="13" FontFamily="Consolas" FontStyle="Italic" HorizontalAlignment="Right" Text="{Binding Path=data_dodania}"/>
                </Grid>
                <TextBlock Grid.Row="1" FontSize="13" FontFamily="Consolas" Text="{Binding Path=tresc}"/>
            </Grid>
        </Border>
    </DataTemplate>



    <Style TargetType="{x:Type ListBoxItem}" x:Key="ListBoxItem">
        <Setter Property="ContentTemplate" Value="{StaticResource NoteTemplate}" />
        <Style.Triggers>
            <Trigger Property="IsSelected" Value="True">
                <Setter Property="ContentTemplate" Value="{StaticResource NoteTemplate}" />
            </Trigger>
        </Style.Triggers>
    </Style>

(我将相同的模板放在触发器中只是为了检查它是否有效)

<ListBox Name="listBoxNotatki" Margin="10" ItemContainerStyle="{StaticResource ListBoxItem}" Background="Beige" BorderBrush="Orange" BorderThickness="3"/>

但后来我得到了这个错误:

“无法将‘MS.Internal.NamedObject’类型的对象转换为‘System.Windows.DataTemplate’类型。”

当我将 StaticResource 更改为 DynamicResorce 时,我摆脱了这个错误,但是我的样式中的触发器不起作用(所选项目看起来就像在开始时一样)。

4

1 回答 1

0

ListBox控件上,将ItemTemplate设置为“NoteTemplate”。ListBox知道它是SelectedItem

在您的情况下,我会编写一个DataTemplateSelector并在Listbox的ItemTemplateSelector上使用它来进行前后查看。

这篇文章很好地解释了它: http ://codepb.com/datatemplateselector-in-xaml-versatile-xaml-controls/

于 2013-06-02T16:40:21.813 回答