MyBooleanMultiConvertershould be an classs that implements the interface
IMultiValueConverter.
Best regards
Yves YANG
"Erdal Karaca" <erdal.karaca.de@googlemail.com> wrote in message
news:iatlvt$ilf$1@news.eclipse.org...
> I need to enable a tool item only if two independent sources change:
>
> <TableViever x:name="viewer1" >...
> <TableViever x:name="viewer2" >...
>
> <ToolItem ...
> <ToolItem.enabled>
> <MultiBinding updateSourceTrigger="PropertyChanged">
> <Binding elementName="viewer1" path="singleSelection" />
> <Binding elementName="viewer2" path="singleSelection" />
> </MultiBinding>
> </ToolItem.enabled>
> </ToolItem>
>
> In the log, I can see this message:
> SEVERE: Binding expression has a problem with singleSelection
>
> Is this scenario supposed to work? What do I miss?