我正在尝试在我的 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'
任何帮助表示赞赏。