In, WPF, XAML, I have a Style that's being applied to the items of a ComboBox, I want to get the current item's Content Property but this doesn't seem to work:
<dxe:ComboBoxEdit.Items>
<Style TargetType="{x:Type dxe:ComboBoxEditItem}">
<Style.Setters>
<Setter Property="Content" Value="{Binding Converter={StaticResource CrsNameCvtor}, ConverterParameter={Binding Content,RelativeSource={RelativeSource Self}}}"/>
</Style.Setters>
</Style>
</dxe:ComboBoxEdit.Items>