如何以编程方式设置DataGrid的RowHeaderTemplate

本文关键字:DataGrid RowHeaderTemplate 设置 方式 编程 | 更新日期: 2023-09-27 18:19:25

我有一个用XAML编写的WPF DataGrid,我正在将其转换为C#(不要问)。

它看起来像这样(为了简洁起见,省略了一些属性):

var Card = new DataGrid() {
    Background          = Brushes.LightYellow,
    BorderBrush         = Brushes.DimGray,
    ColumnWidth         = new DataGridLength(100),
    Columns             = {
        new DataGridTextColumn() {
            Binding     = new Binding("In"),
            Header      = "In"
        },
        new DataGridTextColumn() {
            Binding     = new Binding("Out"),
            Header      = "Out"
        },
        new DataGridTextColumn() {
            Binding     = new Binding("Hours"),
            Header      = "Hours"
        }
    },
    RowHeaderTemplate   = new DataTemplate(typeof(DataGridRowHeader)) {
        VisualTree      =  Days
    },
    RowHeaderWidth      = 115,
    RowHeight           = 50
};

Days是这样设置的:

var Days = new FrameworkElementFactory(typeof(TextBlock));
Days.SetBinding(TextBlock.TextProperty, new Binding("Day"));
Days.SetValue(TextBlock.BackgroundProperty, Brushes.Lime);

运行时,DataGridRowHeader为空(而LightYellow不是Lime)。

我也试过Card.RowHeaderTemplate.VisualTree = Days;,但没有用。

我哪里错了?如何以编程方式设置RowHeaderTemplate

如何以编程方式设置DataGrid的RowHeaderTemplate

模板应该使用从XAML加载来创建。使用元素工厂已经过时,不再受支持(在某些情况下可能有效,但在其他情况下不起作用)。

例如,Caliburn.Micro创建如下默认数据模板:

    public static DataTemplate DefaultHeaderTemplate = (DataTemplate)
#if SILVERLIGHT || WinRT
    XamlReader.Load(
#else
    XamlReader.Parse(
#endif
       "<DataTemplate " +
       "    xmlns='http://schemas.microsoft.com/winfx/2006/xaml/presentation'>" +
       "    <TextBlock Text='"{Binding DisplayName, Mode=TwoWay}'" />" +
       "</DataTemplate>"
    );

您可能会发现另一个有用的链接:在代码中创建WPF数据模板正确的方式。它包括一个使用XML和XAML类创建XAML字符串的示例,其中引用了程序集和其他内容。