XamlReader生成DataTemplate的问题

时间:2011-08-24 05:42:27

标签: wpf silverlight xaml datatemplate xamlreader

我正在尝试在我的WPF项目中实现下面的代码,以便为具有动态列的DataGrid动态生成DataTemplates。我在StackOverflow here

上找到了代码
public DataTemplate Create(Type type)
{
  return (DataTemplate)XamlReader.Load(
          @"<DataTemplate
            xmlns=""http://schemas.microsoft.com/client/2007"">
            <" + type.Name + @" Text=""{Binding " + ShowColumn + @"}""/>
            </DataTemplate>"
   );
}

但是,在XamlReader.Load代码中,我收到错误“无法从'string'转换为'System.Xaml.XamlReader'。

我试图通过将代码更改为:

来解决这个问题
return (DataTemplate)XamlReader.Load(XmlReader.Create(

但是我在字符串中传递无效字符时遇到错误。

另外,我不确定如何将TextBlock传递给此代码。我想我会创建一个TextBlock并将其作为Type参数传递,但我得到错误“无法从'System.Windows.Controls.TextBlock'转换为'System.Type'

任何帮助表示感谢。

2 个答案:

答案 0 :(得分:9)

public DataTemplate Create(Type type)
{
    StringReader stringReader = new StringReader(
    @"<DataTemplate 
        xmlns=""http://schemas.microsoft.com/winfx/2006/xaml/presentation""> 
            <" + type.Name + @" Text=""{Binding " + ShowColumn + @"}""/> 
        </DataTemplate>");
    XmlReader xmlReader = XmlReader.Create(stringReader);
    return XamlReader.Load(xmlReader) as DataTemplate;
}

像这样称呼

TextBlock textBlock = new TextBlock();
Create(textBlock.GetType());

答案 1 :(得分:0)

我使用XmlReader的解决方法复制了您的代码,它运行正常,没有任何问题。请试试这个:

 return (DataTemplate)XamlReader.Load(
                XmlReader.Create(
                    @"<DataTemplate  xmlns=""http://schemas.microsoft.com/client/2007""><" + type.Name + @" Text=""{Binding " + ShowColumn + @"}""/>
            </DataTemplate>"
             ));

这应该有用。