6

我正在尝试在我的 WPF 项目中实现以下代码,以便为具有动态列的 DataGrid 动态生成 DataTemplates。我在这里找到了 StackOverflow 上的代码

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'

任何帮助表示赞赏。

4

2 回答 2

10
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());
于 2011-08-24T06:31:32.787 回答
0

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

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

这应该有效。

于 2011-08-24T06:35:20.703 回答