tags:

views:

11

answers:

1

Basically I am trying to do this:

                <Trigger Property="Item" Value="{c:CollectionView.NewItemPlaceHolder}">

But the syntax is wrong. Is this possible to do?

+1  A: 
<Trigger Property="Item" Value="{x:Static c:CollectionView.NewItemPlaceHolder}">

HTH,
Kent

Kent Boogaart