Changes
<tab name="Xamarin">
</tab>
</tabs>
<tab name="Xamarin">
</tab>
</tabs>
<tab name="Xamarin">
</tab>
</tabs>
If / Or statements can be evaluated using the C# syntax P0 ? P1 : P2.
In this case, if the result of the P0 expression is True, P1 will be effected. Otherwise, P2 will be.
<tabs>
<tab name="UWP">
</tab>
If / Or statements are being evaluated using the C# syntax (P0==0 || P0==null) ? P1 : P2.
In this case, if the result of the P0 expression is zero or null, P1 will be effected. Otherwise, P2 will be.
<tab name="Xamarin">
<Controls:EvalExpression x:Name="WFcolors_Issued" Expression="(P0==0 || P0==null) ? P1 : P2">
<Controls:EvalExpressionParameter Name="P0" Value="{Binding Values[SC_STATUS]}" />
<Controls:EvalExpressionParameter Name="P1" Value="LightGray" />
<Controls:EvalExpressionParameter Name="P2" Value="{StaticResource MATAP_Priority_Green}" />
</Controls:EvalExpression>
</tab>
</tabs>
== Parameters ==
EvalExpressionParameters can be added as child objects to an EvalExpression control. Each parameter object needs a unique ''Name'' and a ''Value'', where the latter can be either a constant or dynamic value supplied through a binding.
==See also==