let's say I have following code :
<ContextMenu IsEnabled="{Binding Converter={StaticResource SomeConverterWithSmartLogic}}">
So, I did not specified any binding information except Converter...Is it possible to force WPF to call it only one time?
UPD : At this moment i'm storing value converter's state in static fields
If your converter should converter one time only you could write your converter to be that way if that does not cause other disturbances, at least that does not require static fields and the like e.g.