tags:

views:

87

answers:

2

I want to do something like

<DataTrigger Binding="{Binding Something}" ValueIsNot="{x:Null}">
+7  A: 

I think your best bet is to use a Converter. See this blog post for a sample for converting a result into a boolean.

<DataTrigger
    Binding="{Binding Path=x, Converter={StaticResource IsNotNullConverter}}"
    Value="true">
tvanfosson
+2  A: 

If you want to go with triggers, you could write your own or leverage existing ones. If you're doing MVVM, just bind the view to a property on your VM that does the logic for you.

HTH, Kent

Kent Boogaart
Do you write that value converter library? Can I contribute some?
CannibalSmith