Я отражаю код шаблона рамки в отражателе. И я обнаружил, что tc.CellTemplate.LoadContent () связан с закрытым полем с именем «_sealed» в классе FrameworkTemplate.
Затем я нашел поле, в котором будет задано значение, и я вызываю этот метод, проблема решена.
Вот решение:
public override DataTemplate GenerateCellTemplate ( string propertyName )
{
DataTemplate template = new DataTemplate ( );
var textBlockName = string.Format ( "{0}_TextBlock", propertyName );
FrameworkElementFactory textBoxElement = new FrameworkElementFactory ( typeof ( TextBlock ), textBlockName );
textBoxElement.SetBinding ( TextBlock.TextProperty, new Binding ( propertyName ) );
template.VisualTree = textBoxElement;
Trigger trigger = new Trigger ( );
// This solves it!
template.Seal();
return template;
}