DropDownButton.DropDownContent Bindings broken when moved to 3.2.0

DropDownButton.DropDownContent Bindings broken when moved to 3.2.0

Hi I was using successfully DropDownButton since ExtendedWPFtoolkit 3.0.0

I was working fine, recently i upgraded to ExtendedWPFtoolkit 3.2.0

Databindings inside DropDownButton.DropDownContent XAML has broken.

If in re-install ExtendedWPFtoolkit 3.0.0 it worked fine again.

Bad part is it is not giving me any clue of broken bindings ExtendedWPFtoolkit 3.2.0

below is the code which works fine in 3.0 but not in 3.2.0. Any binding inside DropDownButton.DropDownContent is broken.

<xctk:DropDownButton Name=”DropDownButton” Height=”25″ AllowDrop =”True” Background=”White” Content=”Recent Access List ” Style=”{DynamicResource DropDownButtonStyle1}” >
<xctk:DropDownButton.DropDownContent>
<ListBox ItemsSource=”{Binding Path=RecentAccessList, Mode=OneWay}”>
<ListBox.ItemTemplate >
<DataTemplate>
<Button
HorizontalContentAlignment=”Left”
Content=”{Binding Converter={StaticResource MyConverter}}”
ToolTip=”{Binding}” Click=”ButtonBase_OnClick”
CommandParameter=”{Binding}”
Command=”{Binding DataContext.MyCommand, RelativeSource={RelativeSource Mode=FindAncestor, AncestorType={x:Type xctk:DropDownButton}, AncestorLevel=1}}”
Style=”{StaticResource {x:Static ToolBar.ButtonStyleKey}}”>
</Button>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
</xctk:DropDownButton.DropDownContent>
</xctk:DropDownButton>