I want to do something like
<DataTrigger Binding="{Binding Something}" ValueIsNot="{x:Null}">
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">
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With