2

我有一个DataGrid用 XAML 编写的 WPF,我正在转换为 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);

运行时,DataGrid'sRowHeader为空白(并且LightYellow,不是Lime)。

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

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

4

1 回答 1

1

应使用从 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>"
    );

您可能会发现另一个有用的链接:Creating WPF Data Templates in Code The Right Way。它包括一个使用 XML 和 XAML 类创建 XAML 字符串的示例,其中包含对程序集和内容的引用。

于 2014-08-25T00:07:21.060 回答