vote up 1 vote down star

In my presenter I have this property:

public List<string> PropertyNames { get; set; }

And I want to list out the names with a ItemsControl/DataTemplate like this:

<ItemsControl ItemsSource="{Binding PropertyNames}">
    <ItemsControl.ItemTemplate>
        <DataTemplate>
            <TextBlock Text="{Binding Value}"/>
        </DataTemplate>
    </ItemsControl.ItemTemplate>
</ItemsControl>

Since the generic list doesn't have named properties, how do I reference the value in my Binding statement?

flag

1 Answer

vote up 3 vote down check

let me answer this, it's just {Binding}.

link|flag
+1. Yeah. I confused it with Path=... where dot works. – Mehrdad Afshari Sep 8 at 11:19
3  
FYI, '.' works either with or without 'Path='. Blank is implicitly interpreted as a '.'. So you can write {Binding}, {Binding .}, or {Binding Path=.} Note that {Binding Path=} won't work - you'll get a XAML compiler error. – Kent Boogaart Sep 8 at 12:10

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.