jsj
jsj

Reputation: 9381

Programmatically add a TextBlock to a DataTemplate

<DataTemplate>
    <TextBlock x:Name="Txt" Text="{Binding fieldA}" />
</DataTemplate>

I want to do the equivalent of the above XAML programatically (There is more to the XAML, I have only shown the relevant bits). So far I have got:

DataTemplate newDataTemplate = new DataTemplate();
TextBlock newTextBlock = new TextBlock();
newTextBlock.SetBinding(TextBlock.TextProperty, new Binding("fieldA"));
newTextBlock.Name = "txt";

So how do I now add the TextBlock to the DataTemplate.. i.e. I want to do something like:

newDataTemplate.children.Add(TextBlock)

Upvotes: 4

Views: 12117

Answers (1)

Nikhil Agrawal
Nikhil Agrawal

Reputation: 48558

var newTextBlock = new FrameworkElementFactory(typeof(TextBlock));
newTextBlock.Name = "txt";
newTextBlock.SetBinding(TextBlock.TextProperty, new Binding("fieldA"));
DataTemplate newDataTemplate = new DataTemplate(){VisualTree = newTextBlock};

I think you should look at this question.

How do I create a datatemplate with content programmatically?

Upvotes: 7

Related Questions