Basically I am trying to do this:
<Trigger Property="Item" Value="{c:CollectionView.NewItemPlaceHolder}">
But the syntax is wrong. Is this possible to do?
Basically I am trying to do this:
<Trigger Property="Item" Value="{c:CollectionView.NewItemPlaceHolder}">
But the syntax is wrong. Is this possible to do?
<Trigger Property="Item" Value="{x:Static c:CollectionView.NewItemPlaceHolder}">
HTH,
Kent