如何使用DataTemplates解决工具栏错误?

时间:2013-04-15 16:09:22

标签: wpf .net-4.0 datatemplate toolbar

(Wpf,.Net4)

嘿 当我使用带有DataType的数据模板(并且没有键)时,它仅适用于构造函数。 (我必须这样使用,因为我有两种不同的类型)。 问题是,它适用于.net 3.5,现在我需要升级到.net 4.(我玩了项目的属性,看到它正在工作3.5) 这是整个代码(默认App.xaml除外):

MainWindow.xaml:

<Window x:Class="WpfApplication1.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:local="clr-namespace:WpfApplication1" x:Name="me"
        Title="MainWindow" Height="350" Width="525">
    <Grid>
        <Grid.RowDefinitions>
            <RowDefinition Height="100" />
            <RowDefinition />
        </Grid.RowDefinitions>
        <ToolBar ItemsSource="{Binding ElementName=me, Path=Items}">
            <ToolBar.Resources>
                <DataTemplate  DataType="{x:Type local:Class1}">
                    <TextBlock Text="{Binding Title}" />
                </DataTemplate>
            </ToolBar.Resources>
        </ToolBar>

        <StackPanel Grid.Row="1">
            <Button Content="1"  Click="Button_Click"/>
        </StackPanel>
    </Grid>
</Window>

MainWindow.cs:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Collections.ObjectModel;

namespace WpfApplication1
{
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            Items = new ObservableCollection<Class1>();
            Items.Add(new Class1() { Title = "1" });

            InitializeComponent();
        }

        public ObservableCollection<Class1> Items { get; set; }

        private void Button_Click(object sender, RoutedEventArgs e)
        {
            Items.Add(new Class1() { Title = (Items.Count + 1).ToString() });
        }
    }

    public class Class1
    {
        public string Title { get; set; }
    }
}

按钮动态添加项目,我们可以看到第一个显示其标题,动态添加的项目没有应用模板。 我能做什么?感谢。

2 个答案:

答案 0 :(得分:3)

显然,渲染Toolbar后不再使用默认的Class1模板。根据要求,有几种解决方案可以在这里使用。

1)在App.xaml中定义DataTemplate

<Application.Resources>
    <ResourceDictionary>
        <ResourceDictionary.MergedDictionaries>
            <ResourceDictionary>
                <DataTemplate DataType="{x:Type TestWPF:Class1}">
                    <TextBlock Text="{Binding Title}" />
                </DataTemplate>
            </ResourceDictionary>
        </ResourceDictionary.MergedDictionaries>
    </ResourceDictionary>
</Application.Resources>

假设您还有其他一些资源词典。如果没有,DataTemplate可以直接放入Application.Resources而没有所有字典内容。

2)当一个对象没有默认模板时,它只使用其ToString方法直观地表示自己。因此,Class1(和其他人)可以覆盖ToString

public class Class1
{
    public string Title { get; set; }

    public override string ToString()
    {
       return Title;
    }
}

3) ItemControls的标准WPF方法 - 有ItemTemplate

 <ToolBar ItemsSource="{Binding ElementName=me, Path=Items}">
     <ToolBar.ItemTemplate>
         <DataTemplate>
             <TextBlock Text="{Binding Title}" />
         </DataTemplate>
     </ToolBar.ItemTemplate>
 </ToolBar>

但是你说有几种类型应该有模板,所以为了实现这一点,你必须为ToolBar实现ItemTemplateSelector

答案 1 :(得分:0)

此问题有第四种解决方法 - 您需要使用另一个集合来形成新的工具栏内容,然后将此集合的值分配给项目