1

我为我的 listBox 定义了两个数据模板,我使用 DataTemplateSelector 来决定要为项目呈现哪个数据模板。但是,我的一个模板有一个嵌入式按钮,单击该按钮应在适当位置显示一个表单。所以我设置了一个布尔属性并实现了 INotifyPropertyChanged; 这样当布尔属性为真时,当前模板将被第三个模板替换。

这是按钮的代码。

        Activity activityItem = (Activity)listBox1.Items[listBox1.SelectedIndex]; 
        activityItem.ShowFeedbackForm = 1;

这是我的 XAML:

    <Grid.Resources>
    <DataTemplate x:Key="completedActivityTemplate">
        <Grid Name="templateGrid" >
    ... 
    <DataTemplate x:Key="activityTemplate">
        <Grid Name="templateGrid" >
    ...
    <DataTemplate x:Key="feedbackFormTemplate">
        <Grid Name="templateGrid" >
    ...    
     <Style TargetType="ListBoxItem" x:Key="ContainerStyle">
        <Setter Property="Height" Value="55" />
        <Setter Property="Background" Value="Transparent" />
        <Style.Triggers>
            <Trigger Property="IsKeyboardFocusWithin" Value="True">
                <Setter Property="IsSelected" Value="True" />
            </Trigger>
            <DataTrigger Binding="{Binding showFeedbackForm}" Value="1">
                <Setter Property="ContentTemplate" Value="{StaticResource feedbackFormTemplate}" />
            </DataTrigger>
        </Style.Triggers>
    </Style>
    </Grid.Resources>
    <ListBox Grid.Row="1" Name="listBox1" IsSynchronizedWithCurrentItem="True" 
         ScrollViewer.HorizontalScrollBarVisibility="Disabled"
         VerticalContentAlignment="Stretch" Background="Transparent"
         BorderThickness="0" ItemContainerStyle="{StaticResource ContainerStyle}"
         HorizontalContentAlignment="Stretch" Margin="-3,0,0,0"
         ItemTemplateSelector="{StaticResource myDataTemplateSelector}">
    </ListBox>

因此,当用户单击该按钮时,该项目的 ShowFeedbackForm 的值设置为 1,此时显示反馈表单的模板将被显示,但没有发生任何事情。我的 ObservableCollection(一种方式)绑定工作正常。

4

1 回答 1

0

在按钮单击处理程序中,我将布尔值设置为绑定项,然后重新绑定列表框的数据模板选择器。

        ListBoxItem currentItem = (ListBoxItem)(listBox1.ItemContainerGenerator.ContainerFromItem(listBox1.Items.CurrentItem));
        Activity activityItem = (Activity)listBox1.Items[listBox1.SelectedIndex]; 
        activityItem.ShowFeedbackForm = 1;
        listBox1.ItemTemplateSelector = new ActivityFeedDataTemplateSelector();

如果设置了布尔值,我的 ActivityFeedDataTemplateSelector 将返回所需的模板名称。

于 2012-08-02T14:02:13.023 回答